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 ( -
-
- Next.js logo -
    -
  1. - Get started by editing{" "} - - src/app/page.tsx - - . -
  2. -
  3. - Save and see your changes instantly. -
  4. -
- -
- - Vercel logomark - Deploy now - - - Read our docs - -
-
- -
- ); + return
삼삼오오 화이팅
; }