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