Skip to content

Commit 878ae49

Browse files
committed
feat: initial commit
1 parent fab62bd commit 878ae49

23 files changed

Lines changed: 8220 additions & 1 deletion

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
12+
13+
# testing
14+
/coverage
15+
16+
# next.js
17+
/.next/
18+
/out/
19+
20+
# production
21+
/build
22+
23+
# misc
24+
.DS_Store
25+
*.pem
26+
27+
# debug
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
.pnpm-debug.log*
32+
33+
# env files (can opt-in for committing if needed)
34+
.env*
35+
36+
# vercel
37+
.vercel
38+
39+
# typescript
40+
*.tsbuildinfo
41+
next-env.d.ts

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

README.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,36 @@
1-
# markbloom
1+
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
22

3+
## Getting Started
4+
5+
First, run the development server:
6+
7+
```bash
8+
npm run dev
9+
# or
10+
yarn dev
11+
# or
12+
pnpm dev
13+
# or
14+
bun dev
15+
```
16+
17+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
18+
19+
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
20+
21+
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
22+
23+
## Learn More
24+
25+
To learn more about Next.js, take a look at the following resources:
26+
27+
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
28+
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
29+
30+
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
31+
32+
## Deploy on Vercel
33+
34+
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
35+
36+
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.

app/favicon.ico

25.3 KB
Binary file not shown.

app/globals.css

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
@import "tailwindcss";
2+
@import "tw-animate-css";
3+
@import "shadcn/tailwind.css";
4+
5+
@custom-variant dark (&:is(.dark *));
6+
7+
@theme inline {
8+
--color-background: var(--background);
9+
--color-foreground: var(--foreground);
10+
--font-sans: var(--font-sans);
11+
--font-mono: var(--font-geist-mono);
12+
--font-heading: var(--font-sans);
13+
--color-sidebar-ring: var(--sidebar-ring);
14+
--color-sidebar-border: var(--sidebar-border);
15+
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
16+
--color-sidebar-accent: var(--sidebar-accent);
17+
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
18+
--color-sidebar-primary: var(--sidebar-primary);
19+
--color-sidebar-foreground: var(--sidebar-foreground);
20+
--color-sidebar: var(--sidebar);
21+
--color-chart-5: var(--chart-5);
22+
--color-chart-4: var(--chart-4);
23+
--color-chart-3: var(--chart-3);
24+
--color-chart-2: var(--chart-2);
25+
--color-chart-1: var(--chart-1);
26+
--color-ring: var(--ring);
27+
--color-input: var(--input);
28+
--color-border: var(--border);
29+
--color-destructive: var(--destructive);
30+
--color-accent-foreground: var(--accent-foreground);
31+
--color-accent: var(--accent);
32+
--color-muted-foreground: var(--muted-foreground);
33+
--color-muted: var(--muted);
34+
--color-secondary-foreground: var(--secondary-foreground);
35+
--color-secondary: var(--secondary);
36+
--color-primary-foreground: var(--primary-foreground);
37+
--color-primary: var(--primary);
38+
--color-popover-foreground: var(--popover-foreground);
39+
--color-popover: var(--popover);
40+
--color-card-foreground: var(--card-foreground);
41+
--color-card: var(--card);
42+
--radius-sm: calc(var(--radius) * 0.6);
43+
--radius-md: calc(var(--radius) * 0.8);
44+
--radius-lg: var(--radius);
45+
--radius-xl: calc(var(--radius) * 1.4);
46+
--radius-2xl: calc(var(--radius) * 1.8);
47+
--radius-3xl: calc(var(--radius) * 2.2);
48+
--radius-4xl: calc(var(--radius) * 2.6);
49+
}
50+
51+
:root {
52+
--background: oklch(1 0 0);
53+
--foreground: oklch(0.145 0 0);
54+
--card: oklch(1 0 0);
55+
--card-foreground: oklch(0.145 0 0);
56+
--popover: oklch(1 0 0);
57+
--popover-foreground: oklch(0.145 0 0);
58+
--primary: oklch(0.205 0 0);
59+
--primary-foreground: oklch(0.985 0 0);
60+
--secondary: oklch(0.97 0 0);
61+
--secondary-foreground: oklch(0.205 0 0);
62+
--muted: oklch(0.97 0 0);
63+
--muted-foreground: oklch(0.556 0 0);
64+
--accent: oklch(0.97 0 0);
65+
--accent-foreground: oklch(0.205 0 0);
66+
--destructive: oklch(0.577 0.245 27.325);
67+
--border: oklch(0.922 0 0);
68+
--input: oklch(0.922 0 0);
69+
--ring: oklch(0.708 0 0);
70+
--chart-1: oklch(0.87 0 0);
71+
--chart-2: oklch(0.556 0 0);
72+
--chart-3: oklch(0.439 0 0);
73+
--chart-4: oklch(0.371 0 0);
74+
--chart-5: oklch(0.269 0 0);
75+
--radius: 0.625rem;
76+
--sidebar: oklch(0.985 0 0);
77+
--sidebar-foreground: oklch(0.145 0 0);
78+
--sidebar-primary: oklch(0.205 0 0);
79+
--sidebar-primary-foreground: oklch(0.985 0 0);
80+
--sidebar-accent: oklch(0.97 0 0);
81+
--sidebar-accent-foreground: oklch(0.205 0 0);
82+
--sidebar-border: oklch(0.922 0 0);
83+
--sidebar-ring: oklch(0.708 0 0);
84+
}
85+
86+
.dark {
87+
--background: oklch(0.145 0 0);
88+
--foreground: oklch(0.985 0 0);
89+
--card: oklch(0.205 0 0);
90+
--card-foreground: oklch(0.985 0 0);
91+
--popover: oklch(0.205 0 0);
92+
--popover-foreground: oklch(0.985 0 0);
93+
--primary: oklch(0.922 0 0);
94+
--primary-foreground: oklch(0.205 0 0);
95+
--secondary: oklch(0.269 0 0);
96+
--secondary-foreground: oklch(0.985 0 0);
97+
--muted: oklch(0.269 0 0);
98+
--muted-foreground: oklch(0.708 0 0);
99+
--accent: oklch(0.269 0 0);
100+
--accent-foreground: oklch(0.985 0 0);
101+
--destructive: oklch(0.704 0.191 22.216);
102+
--border: oklch(1 0 0 / 10%);
103+
--input: oklch(1 0 0 / 15%);
104+
--ring: oklch(0.556 0 0);
105+
--chart-1: oklch(0.87 0 0);
106+
--chart-2: oklch(0.556 0 0);
107+
--chart-3: oklch(0.439 0 0);
108+
--chart-4: oklch(0.371 0 0);
109+
--chart-5: oklch(0.269 0 0);
110+
--sidebar: oklch(0.205 0 0);
111+
--sidebar-foreground: oklch(0.985 0 0);
112+
--sidebar-primary: oklch(0.488 0.243 264.376);
113+
--sidebar-primary-foreground: oklch(0.985 0 0);
114+
--sidebar-accent: oklch(0.269 0 0);
115+
--sidebar-accent-foreground: oklch(0.985 0 0);
116+
--sidebar-border: oklch(1 0 0 / 10%);
117+
--sidebar-ring: oklch(0.556 0 0);
118+
}
119+
120+
@layer base {
121+
* {
122+
@apply border-border outline-ring/50;
123+
}
124+
body {
125+
@apply bg-background text-foreground;
126+
}
127+
html {
128+
@apply font-sans;
129+
}
130+
}

app/layout.tsx

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

app/page.tsx

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
import Image from "next/image";
2+
3+
export default function Home() {
4+
return (
5+
<div className="flex flex-col flex-1 items-center justify-center bg-zinc-50 font-sans dark:bg-black">
6+
<main className="flex flex-1 w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
7+
<Image
8+
className="dark:invert"
9+
src="/next.svg"
10+
alt="Next.js logo"
11+
width={100}
12+
height={20}
13+
priority
14+
/>
15+
<div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left">
16+
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
17+
To get started, edit the page.tsx file.
18+
</h1>
19+
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
20+
Looking for a starting point or more instructions? Head over to{" "}
21+
<a
22+
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
23+
className="font-medium text-zinc-950 dark:text-zinc-50"
24+
>
25+
Templates
26+
</a>{" "}
27+
or the{" "}
28+
<a
29+
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
30+
className="font-medium text-zinc-950 dark:text-zinc-50"
31+
>
32+
Learning
33+
</a>{" "}
34+
center.
35+
</p>
36+
</div>
37+
<div className="flex flex-col gap-4 text-base font-medium sm:flex-row">
38+
<a
39+
className="flex h-12 w-full items-center justify-center gap-2 rounded-full bg-foreground px-5 text-background transition-colors hover:bg-[#383838] dark:hover:bg-[#ccc] md:w-[158px]"
40+
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
41+
target="_blank"
42+
rel="noopener noreferrer"
43+
>
44+
<Image
45+
className="dark:invert"
46+
src="/vercel.svg"
47+
alt="Vercel logomark"
48+
width={16}
49+
height={16}
50+
/>
51+
Deploy Now
52+
</a>
53+
<a
54+
className="flex h-12 w-full items-center justify-center rounded-full border border-solid border-black/[.08] px-5 transition-colors hover:border-transparent hover:bg-black/[.04] dark:border-white/[.145] dark:hover:bg-[#1a1a1a] md:w-[158px]"
55+
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
56+
target="_blank"
57+
rel="noopener noreferrer"
58+
>
59+
Documentation
60+
</a>
61+
</div>
62+
</main>
63+
</div>
64+
);
65+
}

components.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "radix-nova",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "",
8+
"css": "app/globals.css",
9+
"baseColor": "neutral",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"iconLibrary": "lucide",
14+
"rtl": false,
15+
"aliases": {
16+
"components": "@/components",
17+
"utils": "@/lib/utils",
18+
"ui": "@/components/ui",
19+
"lib": "@/lib",
20+
"hooks": "@/hooks"
21+
},
22+
"menuColor": "default",
23+
"menuAccent": "subtle",
24+
"registries": {}
25+
}

0 commit comments

Comments
 (0)