From 1ac5c4ba72c9d1b39e6c1c3f20cfc4764ceb71d1 Mon Sep 17 00:00:00 2001 From: Fascinated Date: Sun, 2 Jul 2023 20:20:33 +0100 Subject: [PATCH] add embed color --- config.json | 3 ++- src/app/layout.tsx | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) 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} );