Skip to content

Commit 9238393

Browse files
committed
๐ŸŽ‰ init: ํ”„๋กœ์ ํŠธ ์„ธํŒ…
1 parent a1aea0b commit 9238393

23 files changed

Lines changed: 525 additions & 712 deletions

โ€Ž.eslintrc.jsonโ€Ž

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
11
{
2-
"extends": "next/core-web-vitals"
2+
"extends": [
3+
"next/core-web-vitals",
4+
"airbnb",
5+
"airbnb-typescript",
6+
"prettier"
7+
],
8+
"parserOptions": {
9+
"project": "./tsconfig.json"
10+
},
11+
"rules": {
12+
"react/react-in-jsx-scope": "off"
13+
}
314
}

โ€Žpackage-lock.jsonโ€Ž

Lines changed: 246 additions & 264 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

โ€Žpackage.jsonโ€Ž

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,20 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12+
"eslint-config-airbnb": "^19.0.4",
13+
"eslint-config-prettier": "^9.1.0",
14+
"next": "14.2.5",
1215
"react": "^18",
1316
"react-dom": "^18",
14-
"next": "14.2.5"
17+
"recoil": "^0.7.7",
18+
"styled-components": "^6.1.12"
1519
},
1620
"devDependencies": {
17-
"typescript": "^5",
1821
"@types/node": "^20",
1922
"@types/react": "^18",
2023
"@types/react-dom": "^18",
2124
"eslint": "^8",
22-
"eslint-config-next": "14.2.5"
25+
"eslint-config-next": "14.2.5",
26+
"typescript": "^5"
2327
}
2428
}
1.97 MB
Binary file not shown.

โ€Žpublic/next.svgโ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.

โ€Žpublic/vercel.svgโ€Ž

Lines changed: 0 additions & 1 deletion
This file was deleted.

โ€Žsrc/api/.gitkeepโ€Ž

Whitespace-only changes.

โ€Žsrc/app/favicon.icoโ€Ž

-25.3 KB
Binary file not shown.

โ€Žsrc/app/globals.cssโ€Ž

Lines changed: 0 additions & 107 deletions
This file was deleted.

โ€Žsrc/app/layout.tsxโ€Ž

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,18 @@
1-
import type { Metadata } from "next";
2-
import { Inter } from "next/font/google";
3-
import "./globals.css";
4-
5-
const inter = Inter({ subsets: ["latin"] });
6-
7-
export const metadata: Metadata = {
8-
title: "Create Next App",
9-
description: "Generated by create next app",
10-
};
1+
import Providers from "./providers";
112

123
export default function RootLayout({
134
children,
145
}: Readonly<{
156
children: React.ReactNode;
167
}>) {
178
return (
18-
<html lang="en">
19-
<body className={inter.className}>{children}</body>
9+
<html>
10+
<head>
11+
<meta name="viewport" content="width=device-width, initial-scale=1" />
12+
</head>
13+
<body>
14+
<Providers>{children}</Providers>
15+
</body>
2016
</html>
2117
);
2218
}

0 commit comments

Comments
ย (0)