Skip to content

Commit af9ad81

Browse files
committed
Feat: initialized
1 parent da45f9d commit af9ad81

17 files changed

+9871
-0
lines changed

.gitignore

Lines changed: 295 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,295 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/node,nextjs,macos,clion+all
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=node,nextjs,macos,clion+all
3+
4+
### CLion+all ###
5+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
6+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
7+
8+
# User-specific stuff
9+
.idea/**/workspace.xml
10+
.idea/**/tasks.xml
11+
.idea/**/usage.statistics.xml
12+
.idea/**/dictionaries
13+
.idea/**/shelf
14+
15+
# AWS User-specific
16+
.idea/**/aws.xml
17+
18+
# Generated files
19+
.idea/**/contentModel.xml
20+
21+
# Sensitive or high-churn files
22+
.idea/**/dataSources/
23+
.idea/**/dataSources.ids
24+
.idea/**/dataSources.local.xml
25+
.idea/**/sqlDataSources.xml
26+
.idea/**/dynamic.xml
27+
.idea/**/uiDesigner.xml
28+
.idea/**/dbnavigator.xml
29+
30+
# Gradle
31+
.idea/**/gradle.xml
32+
.idea/**/libraries
33+
34+
# Gradle and Maven with auto-import
35+
# When using Gradle or Maven with auto-import, you should exclude module files,
36+
# since they will be recreated, and may cause churn. Uncomment if using
37+
# auto-import.
38+
# .idea/artifacts
39+
# .idea/compiler.xml
40+
# .idea/jarRepositories.xml
41+
# .idea/modules.xml
42+
# .idea/*.iml
43+
# .idea/modules
44+
# *.iml
45+
# *.ipr
46+
47+
# CMake
48+
cmake-build-*/
49+
50+
# Mongo Explorer plugin
51+
.idea/**/mongoSettings.xml
52+
53+
# File-based project format
54+
*.iws
55+
56+
# IntelliJ
57+
out/
58+
59+
# mpeltonen/sbt-idea plugin
60+
.idea_modules/
61+
62+
# JIRA plugin
63+
atlassian-ide-plugin.xml
64+
65+
# Cursive Clojure plugin
66+
.idea/replstate.xml
67+
68+
# SonarLint plugin
69+
.idea/sonarlint/
70+
71+
# Crashlytics plugin (for Android Studio and IntelliJ)
72+
com_crashlytics_export_strings.xml
73+
crashlytics.properties
74+
crashlytics-build.properties
75+
fabric.properties
76+
77+
# Editor-based Rest Client
78+
.idea/httpRequests
79+
80+
# Android studio 3.1+ serialized cache file
81+
.idea/caches/build_file_checksums.ser
82+
83+
### CLion+all Patch ###
84+
# Ignore everything but code style settings and run configurations
85+
# that are supposed to be shared within teams.
86+
87+
.idea/*
88+
89+
!.idea/codeStyles
90+
!.idea/runConfigurations
91+
92+
### macOS ###
93+
# General
94+
.DS_Store
95+
.AppleDouble
96+
.LSOverride
97+
98+
# Icon must end with two \r
99+
Icon
100+
101+
102+
# Thumbnails
103+
._*
104+
105+
# Files that might appear in the root of a volume
106+
.DocumentRevisions-V100
107+
.fseventsd
108+
.Spotlight-V100
109+
.TemporaryItems
110+
.Trashes
111+
.VolumeIcon.icns
112+
.com.apple.timemachine.donotpresent
113+
114+
# Directories potentially created on remote AFP share
115+
.AppleDB
116+
.AppleDesktop
117+
Network Trash Folder
118+
Temporary Items
119+
.apdisk
120+
121+
### macOS Patch ###
122+
# iCloud generated files
123+
*.icloud
124+
125+
### NextJS ###
126+
# dependencies
127+
/node_modules
128+
/.pnp
129+
.pnp.js
130+
131+
# testing
132+
/coverage
133+
134+
# next.js
135+
/.next/
136+
/out/
137+
138+
# production
139+
/build
140+
141+
# misc
142+
*.pem
143+
144+
# debug
145+
npm-debug.log*
146+
yarn-debug.log*
147+
yarn-error.log*
148+
.pnpm-debug.log*
149+
150+
# local env files
151+
.env*.local
152+
153+
# vercel
154+
.vercel
155+
156+
# typescript
157+
*.tsbuildinfo
158+
next-env.d.ts
159+
160+
### Node ###
161+
# Logs
162+
logs
163+
*.log
164+
lerna-debug.log*
165+
166+
# Diagnostic reports (https://nodejs.org/api/report.html)
167+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
168+
169+
# Runtime data
170+
pids
171+
*.pid
172+
*.seed
173+
*.pid.lock
174+
175+
# Directory for instrumented libs generated by jscoverage/JSCover
176+
lib-cov
177+
178+
# Coverage directory used by tools like istanbul
179+
coverage
180+
*.lcov
181+
182+
# nyc test coverage
183+
.nyc_output
184+
185+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
186+
.grunt
187+
188+
# Bower dependency directory (https://bower.io/)
189+
bower_components
190+
191+
# node-waf configuration
192+
.lock-wscript
193+
194+
# Compiled binary addons (https://nodejs.org/api/addons.html)
195+
build/Release
196+
197+
# Dependency directories
198+
node_modules/
199+
jspm_packages/
200+
201+
# Snowpack dependency directory (https://snowpack.dev/)
202+
web_modules/
203+
204+
# TypeScript cache
205+
206+
# Optional npm cache directory
207+
.npm
208+
209+
# Optional eslint cache
210+
.eslintcache
211+
212+
# Optional stylelint cache
213+
.stylelintcache
214+
215+
# Microbundle cache
216+
.rpt2_cache/
217+
.rts2_cache_cjs/
218+
.rts2_cache_es/
219+
.rts2_cache_umd/
220+
221+
# Optional REPL history
222+
.node_repl_history
223+
224+
# Output of 'npm pack'
225+
*.tgz
226+
227+
# Yarn Integrity file
228+
.yarn-integrity
229+
230+
# dotenv environment variable files
231+
.env
232+
.env.development.local
233+
.env.test.local
234+
.env.production.local
235+
.env.local
236+
237+
# parcel-bundler cache (https://parceljs.org/)
238+
.cache
239+
.parcel-cache
240+
241+
# Next.js build output
242+
.next
243+
out
244+
245+
# Nuxt.js build / generate output
246+
.nuxt
247+
dist
248+
249+
# Gatsby files
250+
.cache/
251+
# Comment in the public line in if your project uses Gatsby and not Next.js
252+
# https://nextjs.org/blog/next-9-1#public-directory-support
253+
# public
254+
255+
# vuepress build output
256+
.vuepress/dist
257+
258+
# vuepress v2.x temp and cache directory
259+
.temp
260+
261+
# Docusaurus cache and generated files
262+
.docusaurus
263+
264+
# Serverless directories
265+
.serverless/
266+
267+
# FuseBox cache
268+
.fusebox/
269+
270+
# DynamoDB Local files
271+
.dynamodb/
272+
273+
# TernJS port file
274+
.tern-port
275+
276+
# Stores VSCode versions used for testing VSCode extensions
277+
.vscode-test
278+
279+
# yarn v2
280+
.yarn/cache
281+
.yarn/unplugged
282+
.yarn/build-state.yml
283+
.yarn/install-state.gz
284+
.pnp.*
285+
286+
### Node Patch ###
287+
# Serverless Webpack directories
288+
.webpack/
289+
290+
# Optional stylelint cache
291+
292+
# SvelteKit build / generate output
293+
.svelte-kit
294+
295+
# End of https://www.toptal.com/developers/gitignore/api/node,nextjs,macos,clion+all

app/favicon.ico

25.3 KB
Binary file not shown.

app/globals.css

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
@import "../coderabbit_nextjs/node_modules/tailwindcss";
2+
3+
:root {
4+
--background: #ffffff;
5+
--foreground: #171717;
6+
}
7+
8+
@theme inline {
9+
--color-background: var(--background);
10+
--color-foreground: var(--foreground);
11+
--font-sans: var(--font-geist-sans);
12+
--font-mono: var(--font-geist-mono);
13+
}
14+
15+
@media (prefers-color-scheme: dark) {
16+
:root {
17+
--background: #0a0a0a;
18+
--foreground: #ededed;
19+
}
20+
}
21+
22+
body {
23+
background: var(--background);
24+
color: var(--foreground);
25+
font-family: Arial, Helvetica, sans-serif;
26+
}

app/layout.tsx

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import type { Metadata } from "next";
2+
import { Geist, Geist_Mono } from "next/font/google";
3+
import "./globals.css";
4+
5+
const geistSans = Geist({
6+
variable: "--font-geist-sans",
7+
subsets: ["latin"],
8+
});
9+
10+
const geistMono = Geist_Mono({
11+
variable: "--font-geist-mono",
12+
subsets: ["latin"],
13+
});
14+
15+
export const metadata: Metadata = {
16+
title: "Create Next App",
17+
description: "Generated by create next app",
18+
};
19+
20+
export default function RootLayout({
21+
children,
22+
}: Readonly<{
23+
children: React.ReactNode;
24+
}>) {
25+
return (
26+
<html lang="en">
27+
<body
28+
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
29+
>
30+
{children}
31+
</body>
32+
</html>
33+
);
34+
}

0 commit comments

Comments
 (0)