nextjs-starter-kit 0.1.1
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/.github/PR_REQUEST_TEMPLATE.md +18 -0
- package/.github/workflows/pr_check.yml +38 -0
- package/.husky/pre-commit +1 -0
- package/.prettierignore +7 -0
- package/.prettierrc +9 -0
- package/README.md +165 -0
- package/components.json +21 -0
- package/eslint.config.mjs +42 -0
- package/jsconfig.json +7 -0
- package/lint-staged.config.js +6 -0
- package/next.config.mjs +6 -0
- package/package.json +72 -0
- package/postcss.config.mjs +5 -0
- package/src/animations/loader.js +81 -0
- package/src/app/(routes)/(home)/page.jsx +7 -0
- package/src/app/favicon.ico +0 -0
- package/src/app/layout.js +81 -0
- package/src/app/not-found.jsx +19 -0
- package/src/app/robots.js +10 -0
- package/src/app/sitemap.js +10 -0
- package/src/assets/Logos/index.js +3 -0
- package/src/assets/index.js +5 -0
- package/src/components/ui/accordion.jsx +53 -0
- package/src/components/ui/alert-dialog.jsx +136 -0
- package/src/components/ui/alert.jsx +59 -0
- package/src/components/ui/avatar.jsx +44 -0
- package/src/components/ui/badge.jsx +40 -0
- package/src/components/ui/breadcrumb.jsx +96 -0
- package/src/components/ui/button.jsx +49 -0
- package/src/components/ui/calendar.jsx +221 -0
- package/src/components/ui/card.jsx +92 -0
- package/src/components/ui/carousel.jsx +217 -0
- package/src/components/ui/chart.jsx +332 -0
- package/src/components/ui/checkbox.jsx +29 -0
- package/src/components/ui/collapsible.jsx +27 -0
- package/src/components/ui/command.jsx +156 -0
- package/src/components/ui/container.jsx +18 -0
- package/src/components/ui/dialog.jsx +127 -0
- package/src/components/ui/drawer.jsx +114 -0
- package/src/components/ui/dropdown-menu.jsx +210 -0
- package/src/components/ui/form.jsx +140 -0
- package/src/components/ui/headings.jsx +34 -0
- package/src/components/ui/image.jsx +21 -0
- package/src/components/ui/input-otp.jsx +66 -0
- package/src/components/ui/input.jsx +21 -0
- package/src/components/ui/label.jsx +21 -0
- package/src/components/ui/pagination.jsx +105 -0
- package/src/components/ui/popover.jsx +42 -0
- package/src/components/ui/progress.jsx +27 -0
- package/src/components/ui/select.jsx +157 -0
- package/src/components/ui/separator.jsx +28 -0
- package/src/components/ui/sheet.jsx +117 -0
- package/src/components/ui/skeleton.jsx +13 -0
- package/src/components/ui/slider.jsx +63 -0
- package/src/components/ui/sonner.jsx +23 -0
- package/src/components/ui/switch.jsx +28 -0
- package/src/components/ui/table.jsx +113 -0
- package/src/components/ui/tabs.jsx +54 -0
- package/src/components/ui/textarea.jsx +18 -0
- package/src/components/ui/tooltip.jsx +49 -0
- package/src/lib/axios.js +8 -0
- package/src/lib/queryClient.js +11 -0
- package/src/lib/utils.js +6 -0
- package/src/providers/QueryProvider.jsx +15 -0
- package/src/shared/icons.js +308 -0
- package/src/styles/fonts.js +30 -0
- package/src/styles/globals.css +124 -0
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
@import "tailwindcss";
|
|
2
|
+
@import "tw-animate-css";
|
|
3
|
+
|
|
4
|
+
@custom-variant dark (&:is(.dark *));
|
|
5
|
+
|
|
6
|
+
@theme inline {
|
|
7
|
+
--color-background: var(--background);
|
|
8
|
+
--color-foreground: var(--foreground);
|
|
9
|
+
--font-Inter: var(--Inter);
|
|
10
|
+
--font-Figtree: var(--Figtree);
|
|
11
|
+
--font-Manrope: var(--Manrope);
|
|
12
|
+
--breakpoint-3xl: 120rem;
|
|
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) - 4px);
|
|
43
|
+
--radius-md: calc(var(--radius) - 2px);
|
|
44
|
+
--radius-lg: var(--radius);
|
|
45
|
+
--radius-xl: calc(var(--radius) + 4px);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
:root {
|
|
49
|
+
--radius: 0.625rem;
|
|
50
|
+
--background: oklch(1 0 0);
|
|
51
|
+
--foreground: oklch(0.145 0 0);
|
|
52
|
+
--card: oklch(1 0 0);
|
|
53
|
+
--card-foreground: oklch(0.145 0 0);
|
|
54
|
+
--popover: oklch(1 0 0);
|
|
55
|
+
--popover-foreground: oklch(0.145 0 0);
|
|
56
|
+
--primary: oklch(0.205 0 0);
|
|
57
|
+
--primary-foreground: oklch(0.985 0 0);
|
|
58
|
+
--secondary: oklch(0.97 0 0);
|
|
59
|
+
--secondary-foreground: oklch(0.205 0 0);
|
|
60
|
+
--muted: oklch(0.97 0 0);
|
|
61
|
+
--muted-foreground: oklch(0.556 0 0);
|
|
62
|
+
--accent: oklch(0.97 0 0);
|
|
63
|
+
--accent-foreground: oklch(0.205 0 0);
|
|
64
|
+
--destructive: oklch(0.577 0.245 27.325);
|
|
65
|
+
--border: oklch(0.922 0 0);
|
|
66
|
+
--input: oklch(0.922 0 0);
|
|
67
|
+
--ring: oklch(0.708 0 0);
|
|
68
|
+
--chart-1: oklch(0.646 0.222 41.116);
|
|
69
|
+
--chart-2: oklch(0.6 0.118 184.704);
|
|
70
|
+
--chart-3: oklch(0.398 0.07 227.392);
|
|
71
|
+
--chart-4: oklch(0.828 0.189 84.429);
|
|
72
|
+
--chart-5: oklch(0.769 0.188 70.08);
|
|
73
|
+
--sidebar: oklch(0.985 0 0);
|
|
74
|
+
--sidebar-foreground: oklch(0.145 0 0);
|
|
75
|
+
--sidebar-primary: oklch(0.205 0 0);
|
|
76
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
77
|
+
--sidebar-accent: oklch(0.97 0 0);
|
|
78
|
+
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
79
|
+
--sidebar-border: oklch(0.922 0 0);
|
|
80
|
+
--sidebar-ring: oklch(0.708 0 0);
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.dark {
|
|
84
|
+
--background: oklch(0.145 0 0);
|
|
85
|
+
--foreground: oklch(0.985 0 0);
|
|
86
|
+
--card: oklch(0.205 0 0);
|
|
87
|
+
--card-foreground: oklch(0.985 0 0);
|
|
88
|
+
--popover: oklch(0.205 0 0);
|
|
89
|
+
--popover-foreground: oklch(0.985 0 0);
|
|
90
|
+
--primary: oklch(0.922 0 0);
|
|
91
|
+
--primary-foreground: oklch(0.205 0 0);
|
|
92
|
+
--secondary: oklch(0.269 0 0);
|
|
93
|
+
--secondary-foreground: oklch(0.985 0 0);
|
|
94
|
+
--muted: oklch(0.269 0 0);
|
|
95
|
+
--muted-foreground: oklch(0.708 0 0);
|
|
96
|
+
--accent: oklch(0.269 0 0);
|
|
97
|
+
--accent-foreground: oklch(0.985 0 0);
|
|
98
|
+
--destructive: oklch(0.704 0.191 22.216);
|
|
99
|
+
--border: oklch(1 0 0 / 10%);
|
|
100
|
+
--input: oklch(1 0 0 / 15%);
|
|
101
|
+
--ring: oklch(0.556 0 0);
|
|
102
|
+
--chart-1: oklch(0.488 0.243 264.376);
|
|
103
|
+
--chart-2: oklch(0.696 0.17 162.48);
|
|
104
|
+
--chart-3: oklch(0.769 0.188 70.08);
|
|
105
|
+
--chart-4: oklch(0.627 0.265 303.9);
|
|
106
|
+
--chart-5: oklch(0.645 0.246 16.439);
|
|
107
|
+
--sidebar: oklch(0.205 0 0);
|
|
108
|
+
--sidebar-foreground: oklch(0.985 0 0);
|
|
109
|
+
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
110
|
+
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
111
|
+
--sidebar-accent: oklch(0.269 0 0);
|
|
112
|
+
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
113
|
+
--sidebar-border: oklch(1 0 0 / 10%);
|
|
114
|
+
--sidebar-ring: oklch(0.556 0 0);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
@layer base {
|
|
118
|
+
* {
|
|
119
|
+
@apply border-border outline-ring/50;
|
|
120
|
+
}
|
|
121
|
+
body {
|
|
122
|
+
@apply bg-background text-foreground;
|
|
123
|
+
}
|
|
124
|
+
}
|