diff --git a/config.json b/config.json index d30805f..c34f01c 100644 --- a/config.json +++ b/config.json @@ -19,7 +19,8 @@ }, "metadata": { "title": "Your Name", - "description": "website description" + "description": "website description", + "color": "#6441a5" }, "links": [ { diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 74a11ed..aa84615 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,7 @@ import { Inter } from "next/font/google"; import "./globals.css"; +import Head from "next/head"; import Config from "../../config.json"; const inter = Inter({ subsets: ["latin"] }); @@ -14,6 +15,9 @@ export default function RootLayout({ }) { return ( + + + {children} );