Skip to content

Commit 5815062

Browse files
committed
Rebuild
1 parent 725c793 commit 5815062

18 files changed

Lines changed: 7485 additions & 1 deletion

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
node_modules
22
.env
3-
.vscode
3+
.vscode
4+
.next

AGENTS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<!-- BEGIN:nextjs-agent-rules -->
2+
# This is NOT the Next.js you know
3+
4+
This version has breaking changes — APIs, conventions, and file structure may all differ from your training data. Read the relevant guide in `node_modules/next/dist/docs/` before writing any code. Heed deprecation notices.
5+
<!-- END:nextjs-agent-rules -->

CLAUDE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@AGENTS.md

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 "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.js

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

0 commit comments

Comments
 (0)