Skip to content

Commit c3d4487

Browse files
committed
init website
1 parent 4acdf6a commit c3d4487

33 files changed

+14545
-0
lines changed

website/.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

website/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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).
2+
3+
## Getting Started
4+
5+
First, run the development server:
6+
7+
```bash
8+
npm run dev
9+
```
10+
11+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

website/app/favicon.ico

25.3 KB
Binary file not shown.

website/app/globals.css

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
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+
--color-sidebar-ring: var(--sidebar-ring);
13+
--color-sidebar-border: var(--sidebar-border);
14+
--color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
15+
--color-sidebar-accent: var(--sidebar-accent);
16+
--color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
17+
--color-sidebar-primary: var(--sidebar-primary);
18+
--color-sidebar-foreground: var(--sidebar-foreground);
19+
--color-sidebar: var(--sidebar);
20+
--color-chart-5: var(--chart-5);
21+
--color-chart-4: var(--chart-4);
22+
--color-chart-3: var(--chart-3);
23+
--color-chart-2: var(--chart-2);
24+
--color-chart-1: var(--chart-1);
25+
--color-ring: var(--ring);
26+
--color-input: var(--input);
27+
--color-border: var(--border);
28+
--color-destructive: var(--destructive);
29+
--color-accent-foreground: var(--accent-foreground);
30+
--color-accent: var(--accent);
31+
--color-muted-foreground: var(--muted-foreground);
32+
--color-muted: var(--muted);
33+
--color-secondary-foreground: var(--secondary-foreground);
34+
--color-secondary: var(--secondary);
35+
--color-primary-foreground: var(--primary-foreground);
36+
--color-primary: var(--primary);
37+
--color-popover-foreground: var(--popover-foreground);
38+
--color-popover: var(--popover);
39+
--color-card-foreground: var(--card-foreground);
40+
--color-card: var(--card);
41+
--radius-sm: calc(var(--radius) - 4px);
42+
--radius-md: calc(var(--radius) - 2px);
43+
--radius-lg: var(--radius);
44+
--radius-xl: calc(var(--radius) + 4px);
45+
--radius-2xl: calc(var(--radius) + 8px);
46+
--radius-3xl: calc(var(--radius) + 12px);
47+
--radius-4xl: calc(var(--radius) + 16px);
48+
}
49+
50+
:root {
51+
--background: oklch(1 0 0);
52+
--foreground: oklch(0.13 0.028 261.692);
53+
--card: oklch(1 0 0);
54+
--card-foreground: oklch(0.13 0.028 261.692);
55+
--popover: oklch(1 0 0);
56+
--popover-foreground: oklch(0.13 0.028 261.692);
57+
--primary: oklch(0.67 0.16 58);
58+
--primary-foreground: oklch(0.99 0.02 95);
59+
--secondary: oklch(0.967 0.001 286.375);
60+
--secondary-foreground: oklch(0.21 0.006 285.885);
61+
--muted: oklch(0.967 0.003 264.542);
62+
--muted-foreground: oklch(0.551 0.027 264.364);
63+
--accent: oklch(0.967 0.003 264.542);
64+
--accent-foreground: oklch(0.21 0.034 264.665);
65+
--destructive: oklch(0.577 0.245 27.325);
66+
--border: oklch(0.928 0.006 264.531);
67+
--input: oklch(0.928 0.006 264.531);
68+
--ring: oklch(0.707 0.022 261.325);
69+
--chart-1: oklch(0.88 0.15 92);
70+
--chart-2: oklch(0.77 0.16 70);
71+
--chart-3: oklch(0.67 0.16 58);
72+
--chart-4: oklch(0.56 0.15 49);
73+
--chart-5: oklch(0.47 0.12 46);
74+
--radius: 0.625rem;
75+
--sidebar: oklch(0.985 0.002 247.839);
76+
--sidebar-foreground: oklch(0.13 0.028 261.692);
77+
--sidebar-primary: oklch(0.67 0.16 58);
78+
--sidebar-primary-foreground: oklch(0.99 0.02 95);
79+
--sidebar-accent: oklch(0.967 0.003 264.542);
80+
--sidebar-accent-foreground: oklch(0.21 0.034 264.665);
81+
--sidebar-border: oklch(0.928 0.006 264.531);
82+
--sidebar-ring: oklch(0.707 0.022 261.325);
83+
}
84+
85+
.dark {
86+
--background: oklch(0.13 0.028 261.692);
87+
--foreground: oklch(0.985 0.002 247.839);
88+
--card: oklch(0.21 0.034 264.665);
89+
--card-foreground: oklch(0.985 0.002 247.839);
90+
--popover: oklch(0.21 0.034 264.665);
91+
--popover-foreground: oklch(0.985 0.002 247.839);
92+
--primary: oklch(0.77 0.16 70);
93+
--primary-foreground: oklch(0.28 0.07 46);
94+
--secondary: oklch(0.274 0.006 286.033);
95+
--secondary-foreground: oklch(0.985 0 0);
96+
--muted: oklch(0.278 0.033 256.848);
97+
--muted-foreground: oklch(0.707 0.022 261.325);
98+
--accent: oklch(0.278 0.033 256.848);
99+
--accent-foreground: oklch(0.985 0.002 247.839);
100+
--destructive: oklch(0.704 0.191 22.216);
101+
--border: oklch(1 0 0 / 10%);
102+
--input: oklch(1 0 0 / 15%);
103+
--ring: oklch(0.551 0.027 264.364);
104+
--chart-1: oklch(0.88 0.15 92);
105+
--chart-2: oklch(0.77 0.16 70);
106+
--chart-3: oklch(0.67 0.16 58);
107+
--chart-4: oklch(0.56 0.15 49);
108+
--chart-5: oklch(0.47 0.12 46);
109+
--sidebar: oklch(0.21 0.034 264.665);
110+
--sidebar-foreground: oklch(0.985 0.002 247.839);
111+
--sidebar-primary: oklch(0.77 0.16 70);
112+
--sidebar-primary-foreground: oklch(0.28 0.07 46);
113+
--sidebar-accent: oklch(0.278 0.033 256.848);
114+
--sidebar-accent-foreground: oklch(0.985 0.002 247.839);
115+
--sidebar-border: oklch(1 0 0 / 10%);
116+
--sidebar-ring: oklch(0.551 0.027 264.364);
117+
}
118+
119+
@layer base {
120+
* {
121+
@apply border-border outline-ring/50;
122+
}
123+
body {
124+
@apply bg-background text-foreground;
125+
}
126+
}

website/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+
5+
const inter = Inter({subsets:['latin'],variable:'--font-sans'});
6+
7+
const geistSans = Geist({
8+
variable: "--font-geist-sans",
9+
subsets: ["latin"],
10+
});
11+
12+
const geistMono = Geist_Mono({
13+
variable: "--font-geist-mono",
14+
subsets: ["latin"],
15+
});
16+
17+
export const metadata: Metadata = {
18+
title: "Create Next App",
19+
description: "Generated by create next app",
20+
};
21+
22+
export default function RootLayout({
23+
children,
24+
}: Readonly<{
25+
children: React.ReactNode;
26+
}>) {
27+
return (
28+
<html lang="en" className={inter.variable}>
29+
<body
30+
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
31+
>
32+
{children}
33+
</body>
34+
</html>
35+
);
36+
}

website/app/page.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { ComponentExample } from "@/components/component-example";
2+
3+
export default function Page() {
4+
return <ComponentExample />;
5+
}

website/components.json

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

0 commit comments

Comments
 (0)