-
-
-
- Get started by editing{" "}
-
- src/app/page.tsx -- . -
- - - Save and see your changes instantly. - -
diff --git a/package.json b/package.json index 3b4f8d4..1ed1579 100644 --- a/package.json +++ b/package.json @@ -37,6 +37,6 @@ "typescript": "^5.9.2" }, "lint-staged": { - "*/.{js, ts, jsx, tsx}": "eslint --fix" + "**/*.{js,jsx,ts,tsx}": "eslint --fix" } } diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f7fa87e..1a229c4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,10 +2,7 @@ import type { Metadata } from "next"; import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); +const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"] }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", @@ -19,14 +16,43 @@ export const metadata: Metadata = { export default function RootLayout({ children, -}: Readonly<{ - children: React.ReactNode; -}>) { +}: Readonly<{ children: React.ReactNode }>) { return ( - +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index a932894..49cbefe 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,103 +1,3 @@ -import Image from "next/image"; - export default function Home() { - return ( -
- src/app/page.tsx
-
- .
-