From 055cc7ebbb5a9a36167b1ec55aa1afa545f0426c Mon Sep 17 00:00:00 2001 From: Keroosha Date: Tue, 13 Jun 2023 22:27:11 +0300 Subject: [PATCH] fix metadata --- src/app/layout.tsx | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 71b3fbf..0cc7c19 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,21 +1,17 @@ -import './globals.css' -import { Inter } from 'next/font/google' +import "./globals.css"; +import { Inter } from "next/font/google"; -const inter = Inter({ subsets: ['latin'] }) +const inter = Inter({ subsets: ["latin"] }); export const metadata = { - title: 'Create Next App', - description: 'Generated by create next app', -} + title: "Whoami: Keroosha", + description: "Keroosha's landing page", +}; -export default function RootLayout({ - children, -}: { - children: React.ReactNode -}) { +export default function RootLayout({ children }: { children: React.ReactNode }) { return ( {children} - ) + ); }