diff --git a/app/layout.tsx b/app/layout.tsx index aad92df..d314f7e 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,11 +1,13 @@ import '@/styles/globals.css'; import 'remixicon/fonts/remixicon.css'; -import { Fira_Code } from '@next/font/google'; -import localFont from '@next/font/local'; -import { cn } from '@/lib/utils'; +import { Fira_Code } from 'next/font/google'; +import localFont from 'next/font/local'; import { type ReactNode } from 'react'; +import { cn } from '@/lib/utils'; +import DefaultTags from '@/ui/DefaultTags'; + const sans = localFont({ variable: '--font-sans', src: './fonts/Karrik.woff2', @@ -18,6 +20,11 @@ const code = Fira_Code({ weight: 'variable' }); +export const metadata = { + title: 'Peer-at Code', + description: 'Peer-at Code a pour but de donner l’envie de coder et d’apprendre par le jeu!' +}; + export default function RootLayout({ children }: { children: ReactNode }) { return ( - + + + + {/* TODO: Use Metadata from 13.2 */} + + {/* Peer-at Code + + + + + + + + + + + + + */} +
{children}