- To get started, edit the page.tsx file. -
-- Looking for a starting point or more instructions? Head over to{" "} - - Templates - {" "} - or the{" "} - - Learning - {" "} - center. -
-diff --git a/app/globals.css b/app/globals.css index a2dc41e..bd6213e 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,26 +1,3 @@ -@import "tailwindcss"; - -:root { - --background: #ffffff; - --foreground: #171717; -} - -@theme inline { - --color-background: var(--background); - --color-foreground: var(--foreground); - --font-sans: var(--font-geist-sans); - --font-mono: var(--font-geist-mono); -} - -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - -body { - background: var(--background); - color: var(--foreground); - font-family: Arial, Helvetica, sans-serif; -} +@tailwind base; +@tailwind components; +@tailwind utilities; \ No newline at end of file diff --git a/app/layout.tsx b/app/layout.tsx index 976eb90..f268ceb 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,20 +1,20 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Playfair_Display, Inter } from "next/font/google"; import "./globals.css"; -const geistSans = Geist({ - variable: "--font-geist-sans", +const playfairDisplay = Playfair_Display({ + variable: "--font-playfai-display", subsets: ["latin"], }); -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Mathéo Guilbert - Développeur Full Stack", + description: "Portfolio de Mathéo Guilbert, développeur web freelance.", }; export default function RootLayout({ @@ -24,8 +24,8 @@ export default function RootLayout({ }>) { return (
{children} diff --git a/app/page.tsx b/app/page.tsx index 3f36f7c..302b9c5 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -1,65 +1,7 @@ -import Image from "next/image"; - export default function Home() { return ( -- Looking for a starting point or more instructions? Head over to{" "} - - Templates - {" "} - or the{" "} - - Learning - {" "} - center. -
-