create-deesse-app 0.2.3 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/copy.d.ts +1 -1
- package/dist/src/copy.d.ts.map +1 -1
- package/dist/src/copy.js +50 -71
- package/dist/src/copy.js.map +1 -1
- package/dist/src/index.js +3 -2
- package/dist/src/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -5
- package/templates/default/.agents/skills/shadcn/SKILL.md +242 -0
- package/templates/default/.agents/skills/shadcn/agents/openai.yml +5 -0
- package/templates/default/.agents/skills/shadcn/assets/shadcn-small.png +0 -0
- package/templates/default/.agents/skills/shadcn/assets/shadcn.png +0 -0
- package/templates/default/.agents/skills/shadcn/cli.md +257 -0
- package/templates/default/.agents/skills/shadcn/customization.md +202 -0
- package/templates/default/.agents/skills/shadcn/evals/evals.json +47 -0
- package/templates/default/.agents/skills/shadcn/mcp.md +94 -0
- package/templates/default/.agents/skills/shadcn/rules/base-vs-radix.md +306 -0
- package/templates/default/.agents/skills/shadcn/rules/composition.md +195 -0
- package/templates/default/.agents/skills/shadcn/rules/forms.md +192 -0
- package/templates/default/.agents/skills/shadcn/rules/icons.md +101 -0
- package/templates/default/.agents/skills/shadcn/rules/styling.md +162 -0
- package/templates/default/AGENTS.md +5 -0
- package/templates/default/CLAUDE.md +1 -0
- package/templates/default/README.md +28 -0
- package/templates/default/components.json +25 -0
- package/templates/default/eslint.config.mjs +18 -0
- package/templates/default/next.config.ts +7 -0
- package/templates/default/package.json +50 -0
- package/templates/default/postcss.config.mjs +7 -0
- package/templates/default/public/file.svg +1 -0
- package/templates/default/public/globe.svg +1 -0
- package/templates/default/public/nesalia.svg +50 -0
- package/templates/default/public/window.svg +1 -0
- package/templates/default/skills-lock.json +10 -0
- package/templates/default/src/app/(deesse)/admin/[[...slug]]/page.tsx +20 -0
- package/templates/default/src/app/(deesse)/admin/layout.tsx +7 -0
- package/templates/default/src/app/(frontend)/page.tsx +50 -0
- package/templates/default/src/app/globals.css +130 -0
- package/templates/default/src/app/icon.svg +109 -0
- package/templates/default/src/app/layout.tsx +33 -0
- package/templates/default/src/app/page.tsx +50 -0
- package/templates/default/src/components/providers/index.tsx +9 -0
- package/templates/default/src/components/providers/theme-provider.tsx +11 -0
- package/templates/default/src/components/ui/accordion.tsx +81 -0
- package/templates/default/src/components/ui/alert-dialog.tsx +199 -0
- package/templates/default/src/components/ui/alert.tsx +76 -0
- package/templates/default/src/components/ui/aspect-ratio.tsx +11 -0
- package/templates/default/src/components/ui/avatar.tsx +112 -0
- package/templates/default/src/components/ui/badge.tsx +49 -0
- package/templates/default/src/components/ui/breadcrumb.tsx +122 -0
- package/templates/default/src/components/ui/button-group.tsx +83 -0
- package/templates/default/src/components/ui/button.tsx +67 -0
- package/templates/default/src/components/ui/calendar.tsx +222 -0
- package/templates/default/src/components/ui/card.tsx +103 -0
- package/templates/default/src/components/ui/carousel.tsx +242 -0
- package/templates/default/src/components/ui/chart.tsx +373 -0
- package/templates/default/src/components/ui/checkbox.tsx +33 -0
- package/templates/default/src/components/ui/collapsible.tsx +33 -0
- package/templates/default/src/components/ui/combobox.tsx +299 -0
- package/templates/default/src/components/ui/command.tsx +195 -0
- package/templates/default/src/components/ui/context-menu.tsx +263 -0
- package/templates/default/src/components/ui/dialog.tsx +168 -0
- package/templates/default/src/components/ui/direction.tsx +22 -0
- package/templates/default/src/components/ui/drawer.tsx +134 -0
- package/templates/default/src/components/ui/dropdown-menu.tsx +269 -0
- package/templates/default/src/components/ui/empty.tsx +104 -0
- package/templates/default/src/components/ui/field.tsx +238 -0
- package/templates/default/src/components/ui/hover-card.tsx +44 -0
- package/templates/default/src/components/ui/input-group.tsx +156 -0
- package/templates/default/src/components/ui/input-otp.tsx +87 -0
- package/templates/default/src/components/ui/input.tsx +19 -0
- package/templates/default/src/components/ui/item.tsx +196 -0
- package/templates/default/src/components/ui/kbd.tsx +26 -0
- package/templates/default/src/components/ui/label.tsx +24 -0
- package/templates/default/src/components/ui/menubar.tsx +280 -0
- package/templates/default/src/components/ui/native-select.tsx +52 -0
- package/templates/default/src/components/ui/navigation-menu.tsx +164 -0
- package/templates/default/src/components/ui/pagination.tsx +129 -0
- package/templates/default/src/components/ui/popover.tsx +89 -0
- package/templates/default/src/components/ui/progress.tsx +31 -0
- package/templates/default/src/components/ui/radio-group.tsx +44 -0
- package/templates/default/src/components/ui/resizable.tsx +50 -0
- package/templates/default/src/components/ui/scroll-area.tsx +55 -0
- package/templates/default/src/components/ui/select.tsx +192 -0
- package/templates/default/src/components/ui/separator.tsx +28 -0
- package/templates/default/src/components/ui/sheet.tsx +147 -0
- package/templates/default/src/components/ui/sidebar.tsx +702 -0
- package/templates/default/src/components/ui/skeleton.tsx +13 -0
- package/templates/default/src/components/ui/slider.tsx +59 -0
- package/templates/default/src/components/ui/sonner.tsx +49 -0
- package/templates/default/src/components/ui/spinner.tsx +10 -0
- package/templates/default/src/components/ui/switch.tsx +33 -0
- package/templates/default/src/components/ui/table.tsx +116 -0
- package/templates/default/src/components/ui/tabs.tsx +90 -0
- package/templates/default/src/components/ui/textarea.tsx +18 -0
- package/templates/default/src/components/ui/toggle-group.tsx +89 -0
- package/templates/default/src/components/ui/toggle.tsx +46 -0
- package/templates/default/src/components/ui/tooltip.tsx +57 -0
- package/templates/default/src/deesse.config.ts +11 -0
- package/templates/default/src/hooks/use-mobile.ts +19 -0
- package/templates/default/src/lib/utils.ts +6 -0
- package/templates/default/tsconfig.json +35 -0
- package/templates/minimal/.gitkeep +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { defineConfig, globalIgnores } from "eslint/config";
|
|
2
|
+
import nextVitals from "eslint-config-next/core-web-vitals";
|
|
3
|
+
import nextTs from "eslint-config-next/typescript";
|
|
4
|
+
|
|
5
|
+
const eslintConfig = defineConfig([
|
|
6
|
+
...nextVitals,
|
|
7
|
+
...nextTs,
|
|
8
|
+
// Override default ignores of eslint-config-next.
|
|
9
|
+
globalIgnores([
|
|
10
|
+
// Default ignores of eslint-config-next:
|
|
11
|
+
".next/**",
|
|
12
|
+
"out/**",
|
|
13
|
+
"build/**",
|
|
14
|
+
"next-env.d.ts",
|
|
15
|
+
]),
|
|
16
|
+
]);
|
|
17
|
+
|
|
18
|
+
export default eslintConfig;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "default",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"dev": "next dev",
|
|
7
|
+
"build": "next build",
|
|
8
|
+
"start": "next start",
|
|
9
|
+
"lint": "eslint"
|
|
10
|
+
},
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"@base-ui/react": "^1.3.0",
|
|
13
|
+
"@deessejs/next": "workspace:*",
|
|
14
|
+
"class-variance-authority": "^0.7.1",
|
|
15
|
+
"clsx": "^2.1.1",
|
|
16
|
+
"cmdk": "^1.1.1",
|
|
17
|
+
"date-fns": "^4.1.0",
|
|
18
|
+
"deesse": "workspace:*",
|
|
19
|
+
"drizzle-orm": "^0.38.0",
|
|
20
|
+
"embla-carousel-react": "^8.6.0",
|
|
21
|
+
"input-otp": "^1.4.2",
|
|
22
|
+
"lucide-react": "^1.6.0",
|
|
23
|
+
"next": "16.2.1",
|
|
24
|
+
"next-themes": "^0.4.6",
|
|
25
|
+
"pg": "^8.13.0",
|
|
26
|
+
"radix-ui": "^1.4.3",
|
|
27
|
+
"react": "19.2.4",
|
|
28
|
+
"react-day-picker": "^9.14.0",
|
|
29
|
+
"react-dom": "19.2.4",
|
|
30
|
+
"react-resizable-panels": "^4.7.6",
|
|
31
|
+
"recharts": "3.8.0",
|
|
32
|
+
"shadcn": "^4.1.0",
|
|
33
|
+
"sonner": "^2.0.7",
|
|
34
|
+
"tailwind-merge": "^3.5.0",
|
|
35
|
+
"tw-animate-css": "^1.4.0",
|
|
36
|
+
"vaul": "^1.1.2"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@tailwindcss/postcss": "^4",
|
|
40
|
+
"@types/node": "^20",
|
|
41
|
+
"@types/pg": "^8.11.0",
|
|
42
|
+
"@types/react": "^19",
|
|
43
|
+
"@types/react-dom": "^19",
|
|
44
|
+
"drizzle-kit": "^0.30.0",
|
|
45
|
+
"eslint": "^9",
|
|
46
|
+
"eslint-config-next": "16.2.1",
|
|
47
|
+
"tailwindcss": "^4",
|
|
48
|
+
"typescript": "^5"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
2
|
+
width="100%" viewBox="0 0 400 400" enable-background="new 0 0 400 400" xml:space="preserve">
|
|
3
|
+
<path fill="#FBFBFB" opacity="1.000000" stroke="none"
|
|
4
|
+
d="
|
|
5
|
+
M244.048981,112.993195
|
|
6
|
+
C243.954102,124.816582 243.610443,136.644394 243.820374,148.462372
|
|
7
|
+
C244.168961,168.084747 239.035538,185.948502 226.956192,201.459137
|
|
8
|
+
C218.953018,211.735733 210.224243,221.444229 201.956680,231.518982
|
|
9
|
+
C196.079575,238.680786 190.435135,246.033356 184.677475,253.293350
|
|
10
|
+
C172.318451,268.877167 162.672943,285.953857 157.202545,305.128418
|
|
11
|
+
C155.298706,311.801636 154.655365,318.834473 153.392334,325.950989
|
|
12
|
+
C153.401367,325.944122 153.146179,326.307373 152.892715,326.306152
|
|
13
|
+
C134.585632,326.218964 116.265434,326.464935 97.978798,325.795715
|
|
14
|
+
C91.440399,325.556458 85.908882,320.983948 82.945442,315.382538
|
|
15
|
+
C80.009277,309.832611 77.396233,303.285461 77.355705,297.157745
|
|
16
|
+
C76.952293,236.172745 76.807610,175.181564 77.298378,114.197830
|
|
17
|
+
C77.444130,96.086456 88.354301,85.694115 105.124199,85.402382
|
|
18
|
+
C145.603302,84.698196 186.103012,85.177856 226.594406,85.191780
|
|
19
|
+
C226.908051,85.191887 227.221619,85.353386 228.346146,85.662270
|
|
20
|
+
C226.920395,93.167320 225.573746,100.758461 223.999939,108.302216
|
|
21
|
+
C223.336090,111.484184 220.669342,111.356430 218.060150,111.353218
|
|
22
|
+
C182.901306,111.309959 147.742416,111.332352 112.583542,111.312515
|
|
23
|
+
C104.021843,111.307678 104.008644,111.264519 104.006310,119.923355
|
|
24
|
+
C103.990631,178.078308 103.978943,236.233261 103.972267,294.388214
|
|
25
|
+
C103.971504,301.032928 104.057365,301.103394 110.680481,301.104340
|
|
26
|
+
C123.978027,301.106232 137.275574,301.104889 151.112381,301.104889
|
|
27
|
+
C151.112381,292.002258 150.893784,283.222290 151.165039,274.457458
|
|
28
|
+
C151.545609,262.160675 151.974960,249.849533 152.970932,237.592255
|
|
29
|
+
C153.910156,226.033386 159.675659,216.262360 165.996140,206.862473
|
|
30
|
+
C175.710541,192.415085 187.708206,179.892578 199.254807,166.952209
|
|
31
|
+
C207.484436,157.729233 215.125336,147.879288 222.134048,137.693375
|
|
32
|
+
C231.617706,123.910545 238.212769,108.769485 239.819992,91.816750
|
|
33
|
+
C240.022095,89.684921 240.619827,87.590599 241.073532,85.278717
|
|
34
|
+
C260.020203,85.278717 278.910370,84.165764 297.602203,85.613609
|
|
35
|
+
C314.001709,86.883896 323.338013,96.214424 323.522003,114.675652
|
|
36
|
+
C324.128143,175.490585 323.924011,236.315613 323.671570,297.135284
|
|
37
|
+
C323.624512,308.467682 319.067963,318.432678 308.421509,323.864349
|
|
38
|
+
C304.489777,325.870270 299.474518,326.463470 294.948303,326.482452
|
|
39
|
+
C252.457870,326.660797 209.966354,326.575287 167.475143,326.554657
|
|
40
|
+
C167.158066,326.554504 166.841049,326.396210 165.272491,325.978363
|
|
41
|
+
C167.167358,318.413177 168.878952,310.751251 171.179001,303.270264
|
|
42
|
+
C171.532974,302.119049 174.592148,301.191620 176.403397,301.186005
|
|
43
|
+
C214.062149,301.069031 251.721390,301.100220 289.380524,301.102417
|
|
44
|
+
C296.875092,301.102844 296.926056,301.056915 296.926117,293.629852
|
|
45
|
+
C296.926575,235.141586 296.926331,176.653320 296.923096,118.165054
|
|
46
|
+
C296.922760,112.077141 296.525177,111.580154 290.435516,111.542068
|
|
47
|
+
C275.606995,111.449310 260.777893,111.457680 245.138916,111.531952
|
|
48
|
+
C244.235550,112.090118 244.142258,112.541656 244.048981,112.993195
|
|
49
|
+
z"/>
|
|
50
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2.5h13v10a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1zM0 1h16v11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5zm3.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M7 4.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" fill="#666"/></svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { RootPage } from "@deessejs/next";
|
|
2
|
+
import { config } from "@deesse-config";
|
|
3
|
+
|
|
4
|
+
interface AdminPageProps {
|
|
5
|
+
params: Promise<{ slug?: string[] }>;
|
|
6
|
+
searchParams: Promise<{ [key: string]: string | string[] | undefined }>;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export default async function AdminPage({ params, searchParams }: AdminPageProps) {
|
|
10
|
+
const resolvedParams = await params;
|
|
11
|
+
const resolvedSearchParams = await searchParams;
|
|
12
|
+
|
|
13
|
+
return (
|
|
14
|
+
<RootPage
|
|
15
|
+
config={config}
|
|
16
|
+
params={resolvedParams}
|
|
17
|
+
searchParams={resolvedSearchParams}
|
|
18
|
+
/>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import Image from "next/image";
|
|
2
|
+
import Link from "next/link";
|
|
3
|
+
|
|
4
|
+
export default function Home() {
|
|
5
|
+
return (
|
|
6
|
+
<div className="flex flex-col flex-1 items-center justify-center bg-zinc-50 font-sans dark:bg-black">
|
|
7
|
+
<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">
|
|
8
|
+
<Image
|
|
9
|
+
src="/nesalia.svg"
|
|
10
|
+
alt="Nesalia logo"
|
|
11
|
+
width={100}
|
|
12
|
+
height={100}
|
|
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
|
+
<Link
|
|
22
|
+
href="https://deessejs.com"
|
|
23
|
+
className="font-medium text-zinc-950 dark:text-zinc-50"
|
|
24
|
+
>
|
|
25
|
+
Documentation
|
|
26
|
+
</Link>{" "}
|
|
27
|
+
or the{" "}
|
|
28
|
+
<Link
|
|
29
|
+
href="https://deessejs.com"
|
|
30
|
+
className="font-medium text-zinc-950 dark:text-zinc-50"
|
|
31
|
+
>
|
|
32
|
+
Guide
|
|
33
|
+
</Link>
|
|
34
|
+
.
|
|
35
|
+
</p>
|
|
36
|
+
</div>
|
|
37
|
+
<div className="flex flex-col gap-4 text-base font-medium sm:flex-row">
|
|
38
|
+
<Link
|
|
39
|
+
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]"
|
|
40
|
+
href="https://deessejs.com/docs"
|
|
41
|
+
target="_blank"
|
|
42
|
+
rel="noopener noreferrer"
|
|
43
|
+
>
|
|
44
|
+
Documentation
|
|
45
|
+
</Link>
|
|
46
|
+
</div>
|
|
47
|
+
</main>
|
|
48
|
+
</div>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
2
|
+
width="100%" viewBox="0 0 400 400" enable-background="new 0 0 400 400" xml:space="preserve">
|
|
3
|
+
<path fill="#0E0E0E" opacity="1.000000" stroke="none"
|
|
4
|
+
d="
|
|
5
|
+
M267.000000,401.000000
|
|
6
|
+
C178.027649,401.000000 89.555305,401.000000 1.041477,401.000000
|
|
7
|
+
C1.041477,267.735992 1.041477,134.471954 1.041477,1.103967
|
|
8
|
+
C134.222290,1.103967 267.444672,1.103967 400.833557,1.103967
|
|
9
|
+
C400.833557,134.333160 400.833557,267.666565 400.833557,401.000000
|
|
10
|
+
C356.472015,401.000000 311.986023,401.000000 267.000000,401.000000
|
|
11
|
+
M245.949005,111.425331
|
|
12
|
+
C260.777893,111.457680 275.606995,111.449310 290.435516,111.542068
|
|
13
|
+
C296.525177,111.580154 296.922760,112.077141 296.923096,118.165054
|
|
14
|
+
C296.926331,176.653320 296.926575,235.141586 296.926117,293.629852
|
|
15
|
+
C296.926056,301.056915 296.875092,301.102844 289.380524,301.102417
|
|
16
|
+
C251.721390,301.100220 214.062149,301.069031 176.403397,301.186005
|
|
17
|
+
C174.592148,301.191620 171.532974,302.119049 171.179001,303.270264
|
|
18
|
+
C168.878952,310.751251 167.167358,318.413177 165.272491,325.978363
|
|
19
|
+
C166.841049,326.396210 167.158066,326.554504 167.475143,326.554657
|
|
20
|
+
C209.966354,326.575287 252.457870,326.660797 294.948303,326.482452
|
|
21
|
+
C299.474518,326.463470 304.489777,325.870270 308.421509,323.864349
|
|
22
|
+
C319.067963,318.432678 323.624512,308.467682 323.671570,297.135284
|
|
23
|
+
C323.924011,236.315613 324.128143,175.490585 323.522003,114.675652
|
|
24
|
+
C323.338013,96.214424 314.001709,86.883896 297.602203,85.613609
|
|
25
|
+
C278.910370,84.165764 260.020203,85.278717 241.073532,85.278717
|
|
26
|
+
C240.619827,87.590599 240.022095,89.684921 239.819992,91.816750
|
|
27
|
+
C238.212769,108.769485 231.617706,123.910545 222.134048,137.693375
|
|
28
|
+
C215.125336,147.879288 207.484436,157.729233 199.254807,166.952209
|
|
29
|
+
C187.708206,179.892578 175.710541,192.415085 165.996140,206.862473
|
|
30
|
+
C159.675659,216.262360 153.910156,226.033386 152.970932,237.592255
|
|
31
|
+
C151.974960,249.849533 151.545609,262.160675 151.165039,274.457458
|
|
32
|
+
C150.893784,283.222290 151.112381,292.002258 151.112381,301.104889
|
|
33
|
+
C137.275574,301.104889 123.978027,301.106232 110.680481,301.104340
|
|
34
|
+
C104.057365,301.103394 103.971504,301.032928 103.972267,294.388214
|
|
35
|
+
C103.978943,236.233261 103.990631,178.078308 104.006310,119.923355
|
|
36
|
+
C104.008644,111.264519 104.021843,111.307678 112.583542,111.312515
|
|
37
|
+
C147.742416,111.332352 182.901306,111.309959 218.060150,111.353218
|
|
38
|
+
C220.669342,111.356430 223.336090,111.484184 223.999939,108.302216
|
|
39
|
+
C225.573746,100.758461 226.920395,93.167320 228.346146,85.662270
|
|
40
|
+
C227.221619,85.353386 226.908051,85.191887 226.594406,85.191780
|
|
41
|
+
C186.103012,85.177856 145.603302,84.698196 105.124199,85.402382
|
|
42
|
+
C88.354301,85.694115 77.444130,96.086456 77.298378,114.197830
|
|
43
|
+
C76.807610,175.181564 76.952293,236.172745 77.355705,297.157745
|
|
44
|
+
C77.396233,303.285461 80.009277,309.832611 82.945442,315.382538
|
|
45
|
+
C85.908882,320.983948 91.440399,325.556458 97.978798,325.795715
|
|
46
|
+
C116.265434,326.464935 134.585632,326.218964 152.892715,326.306152
|
|
47
|
+
C153.146179,326.307373 153.401367,325.944122 153.392334,325.950989
|
|
48
|
+
C154.655365,318.834473 155.298706,311.801636 157.202545,305.128418
|
|
49
|
+
C162.672943,285.953857 172.318451,268.877167 184.677475,253.293350
|
|
50
|
+
C190.435135,246.033356 196.079575,238.680786 201.956680,231.518982
|
|
51
|
+
C210.224243,221.444229 218.953018,211.735733 226.956192,201.459137
|
|
52
|
+
C239.035538,185.948502 244.168961,168.084747 243.820374,148.462372
|
|
53
|
+
C243.610443,136.644394 243.954102,124.816582 244.513947,112.678047
|
|
54
|
+
C244.693604,112.352043 244.873260,112.026039 245.949005,111.425331
|
|
55
|
+
z"/>
|
|
56
|
+
<path fill="#FBFBFB" opacity="1.000000" stroke="none"
|
|
57
|
+
d="
|
|
58
|
+
M244.048981,112.993195
|
|
59
|
+
C243.954102,124.816582 243.610443,136.644394 243.820374,148.462372
|
|
60
|
+
C244.168961,168.084747 239.035538,185.948502 226.956192,201.459137
|
|
61
|
+
C218.953018,211.735733 210.224243,221.444229 201.956680,231.518982
|
|
62
|
+
C196.079575,238.680786 190.435135,246.033356 184.677475,253.293350
|
|
63
|
+
C172.318451,268.877167 162.672943,285.953857 157.202545,305.128418
|
|
64
|
+
C155.298706,311.801636 154.655365,318.834473 153.392334,325.950989
|
|
65
|
+
C153.401367,325.944122 153.146179,326.307373 152.892715,326.306152
|
|
66
|
+
C134.585632,326.218964 116.265434,326.464935 97.978798,325.795715
|
|
67
|
+
C91.440399,325.556458 85.908882,320.983948 82.945442,315.382538
|
|
68
|
+
C80.009277,309.832611 77.396233,303.285461 77.355705,297.157745
|
|
69
|
+
C76.952293,236.172745 76.807610,175.181564 77.298378,114.197830
|
|
70
|
+
C77.444130,96.086456 88.354301,85.694115 105.124199,85.402382
|
|
71
|
+
C145.603302,84.698196 186.103012,85.177856 226.594406,85.191780
|
|
72
|
+
C226.908051,85.191887 227.221619,85.353386 228.346146,85.662270
|
|
73
|
+
C226.920395,93.167320 225.573746,100.758461 223.999939,108.302216
|
|
74
|
+
C223.336090,111.484184 220.669342,111.356430 218.060150,111.353218
|
|
75
|
+
C182.901306,111.309959 147.742416,111.332352 112.583542,111.312515
|
|
76
|
+
C104.021843,111.307678 104.008644,111.264519 104.006310,119.923355
|
|
77
|
+
C103.990631,178.078308 103.978943,236.233261 103.972267,294.388214
|
|
78
|
+
C103.971504,301.032928 104.057365,301.103394 110.680481,301.104340
|
|
79
|
+
C123.978027,301.106232 137.275574,301.104889 151.112381,301.104889
|
|
80
|
+
C151.112381,292.002258 150.893784,283.222290 151.165039,274.457458
|
|
81
|
+
C151.545609,262.160675 151.974960,249.849533 152.970932,237.592255
|
|
82
|
+
C153.910156,226.033386 159.675659,216.262360 165.996140,206.862473
|
|
83
|
+
C175.710541,192.415085 187.708206,179.892578 199.254807,166.952209
|
|
84
|
+
C207.484436,157.729233 215.125336,147.879288 222.134048,137.693375
|
|
85
|
+
C231.617706,123.910545 238.212769,108.769485 239.819992,91.816750
|
|
86
|
+
C240.022095,89.684921 240.619827,87.590599 241.073532,85.278717
|
|
87
|
+
C260.020203,85.278717 278.910370,84.165764 297.602203,85.613609
|
|
88
|
+
C314.001709,86.883896 323.338013,96.214424 323.522003,114.675652
|
|
89
|
+
C324.128143,175.490585 323.924011,236.315613 323.671570,297.135284
|
|
90
|
+
C323.624512,308.467682 319.067963,318.432678 308.421509,323.864349
|
|
91
|
+
C304.489777,325.870270 299.474518,326.463470 294.948303,326.482452
|
|
92
|
+
C252.457870,326.660797 209.966354,326.575287 167.475143,326.554657
|
|
93
|
+
C167.158066,326.554504 166.841049,326.396210 165.272491,325.978363
|
|
94
|
+
C167.167358,318.413177 168.878952,310.751251 171.179001,303.270264
|
|
95
|
+
C171.532974,302.119049 174.592148,301.191620 176.403397,301.186005
|
|
96
|
+
C214.062149,301.069031 251.721390,301.100220 289.380524,301.102417
|
|
97
|
+
C296.875092,301.102844 296.926056,301.056915 296.926117,293.629852
|
|
98
|
+
C296.926575,235.141586 296.926331,176.653320 296.923096,118.165054
|
|
99
|
+
C296.922760,112.077141 296.525177,111.580154 290.435516,111.542068
|
|
100
|
+
C275.606995,111.449310 260.777893,111.457680 245.138916,111.531952
|
|
101
|
+
C244.235550,112.090118 244.142258,112.541656 244.048981,112.993195
|
|
102
|
+
z"/>
|
|
103
|
+
<path fill="#030304" opacity="1.000000" stroke="none"
|
|
104
|
+
d="
|
|
105
|
+
M244.281464,112.835617
|
|
106
|
+
C244.142258,112.541656 244.235550,112.090118 244.690872,111.669312
|
|
107
|
+
C244.873260,112.026039 244.693604,112.352043 244.281464,112.835617
|
|
108
|
+
z"/>
|
|
109
|
+
</svg>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { AppProvider } from '@/components/providers';
|
|
2
|
+
import type { Metadata } from 'next';
|
|
3
|
+
import { Inter, JetBrains_Mono } from 'next/font/google';
|
|
4
|
+
import './globals.css';
|
|
5
|
+
|
|
6
|
+
const inter = Inter({
|
|
7
|
+
variable: '--font-sans',
|
|
8
|
+
subsets: ['latin'],
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
const jetbrainsMono = JetBrains_Mono({
|
|
12
|
+
variable: '--font-mono',
|
|
13
|
+
subsets: ['latin'],
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
export const metadata: Metadata = {
|
|
17
|
+
title: 'Create Deesse App',
|
|
18
|
+
description: 'Generated by create deesse app',
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export default function RootLayout({
|
|
22
|
+
children,
|
|
23
|
+
}: Readonly<{
|
|
24
|
+
children: React.ReactNode;
|
|
25
|
+
}>) {
|
|
26
|
+
return (
|
|
27
|
+
<html lang="en" className={`${inter.variable} ${jetbrainsMono.variable} h-full antialiased`}>
|
|
28
|
+
<body className="min-h-full flex flex-col font-sans">
|
|
29
|
+
<AppProvider>{children}</AppProvider>
|
|
30
|
+
</body>
|
|
31
|
+
</html>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import Image from "next/image";
|
|
2
|
+
import Link from "next/link";
|
|
3
|
+
|
|
4
|
+
export default function Home() {
|
|
5
|
+
return (
|
|
6
|
+
<div className="flex flex-col flex-1 items-center justify-center bg-zinc-50 font-sans dark:bg-black">
|
|
7
|
+
<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">
|
|
8
|
+
<Image
|
|
9
|
+
src="/nesalia.svg"
|
|
10
|
+
alt="Nesalia logo"
|
|
11
|
+
width={100}
|
|
12
|
+
height={100}
|
|
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
|
+
<Link
|
|
22
|
+
href="https://deessejs.com"
|
|
23
|
+
className="font-medium text-zinc-950 dark:text-zinc-50"
|
|
24
|
+
>
|
|
25
|
+
Documentation
|
|
26
|
+
</Link>{" "}
|
|
27
|
+
or the{" "}
|
|
28
|
+
<Link
|
|
29
|
+
href="https://deessejs.com"
|
|
30
|
+
className="font-medium text-zinc-950 dark:text-zinc-50"
|
|
31
|
+
>
|
|
32
|
+
Guide
|
|
33
|
+
</Link>
|
|
34
|
+
.
|
|
35
|
+
</p>
|
|
36
|
+
</div>
|
|
37
|
+
<div className="flex flex-col gap-4 text-base font-medium sm:flex-row">
|
|
38
|
+
<Link
|
|
39
|
+
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]"
|
|
40
|
+
href="https://deessejs.com/docs"
|
|
41
|
+
target="_blank"
|
|
42
|
+
rel="noopener noreferrer"
|
|
43
|
+
>
|
|
44
|
+
Documentation
|
|
45
|
+
</Link>
|
|
46
|
+
</div>
|
|
47
|
+
</main>
|
|
48
|
+
</div>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ThemeProvider } from './theme-provider';
|
|
2
|
+
|
|
3
|
+
export const AppProvider = ({ children }: { children: React.ReactNode }) => {
|
|
4
|
+
return (
|
|
5
|
+
<ThemeProvider attribute="class" defaultTheme="system" enableSystem disableTransitionOnChange>
|
|
6
|
+
{children}
|
|
7
|
+
</ThemeProvider>
|
|
8
|
+
);
|
|
9
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use client"
|
|
2
|
+
|
|
3
|
+
import * as React from "react"
|
|
4
|
+
import { ThemeProvider as NextThemesProvider } from "next-themes"
|
|
5
|
+
|
|
6
|
+
export const ThemeProvider = ({
|
|
7
|
+
children,
|
|
8
|
+
...props
|
|
9
|
+
}: React.ComponentProps<typeof NextThemesProvider>) => {
|
|
10
|
+
return <NextThemesProvider {...props}>{children}</NextThemesProvider>
|
|
11
|
+
}
|