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.
Files changed (67) hide show
  1. package/.github/PR_REQUEST_TEMPLATE.md +18 -0
  2. package/.github/workflows/pr_check.yml +38 -0
  3. package/.husky/pre-commit +1 -0
  4. package/.prettierignore +7 -0
  5. package/.prettierrc +9 -0
  6. package/README.md +165 -0
  7. package/components.json +21 -0
  8. package/eslint.config.mjs +42 -0
  9. package/jsconfig.json +7 -0
  10. package/lint-staged.config.js +6 -0
  11. package/next.config.mjs +6 -0
  12. package/package.json +72 -0
  13. package/postcss.config.mjs +5 -0
  14. package/src/animations/loader.js +81 -0
  15. package/src/app/(routes)/(home)/page.jsx +7 -0
  16. package/src/app/favicon.ico +0 -0
  17. package/src/app/layout.js +81 -0
  18. package/src/app/not-found.jsx +19 -0
  19. package/src/app/robots.js +10 -0
  20. package/src/app/sitemap.js +10 -0
  21. package/src/assets/Logos/index.js +3 -0
  22. package/src/assets/index.js +5 -0
  23. package/src/components/ui/accordion.jsx +53 -0
  24. package/src/components/ui/alert-dialog.jsx +136 -0
  25. package/src/components/ui/alert.jsx +59 -0
  26. package/src/components/ui/avatar.jsx +44 -0
  27. package/src/components/ui/badge.jsx +40 -0
  28. package/src/components/ui/breadcrumb.jsx +96 -0
  29. package/src/components/ui/button.jsx +49 -0
  30. package/src/components/ui/calendar.jsx +221 -0
  31. package/src/components/ui/card.jsx +92 -0
  32. package/src/components/ui/carousel.jsx +217 -0
  33. package/src/components/ui/chart.jsx +332 -0
  34. package/src/components/ui/checkbox.jsx +29 -0
  35. package/src/components/ui/collapsible.jsx +27 -0
  36. package/src/components/ui/command.jsx +156 -0
  37. package/src/components/ui/container.jsx +18 -0
  38. package/src/components/ui/dialog.jsx +127 -0
  39. package/src/components/ui/drawer.jsx +114 -0
  40. package/src/components/ui/dropdown-menu.jsx +210 -0
  41. package/src/components/ui/form.jsx +140 -0
  42. package/src/components/ui/headings.jsx +34 -0
  43. package/src/components/ui/image.jsx +21 -0
  44. package/src/components/ui/input-otp.jsx +66 -0
  45. package/src/components/ui/input.jsx +21 -0
  46. package/src/components/ui/label.jsx +21 -0
  47. package/src/components/ui/pagination.jsx +105 -0
  48. package/src/components/ui/popover.jsx +42 -0
  49. package/src/components/ui/progress.jsx +27 -0
  50. package/src/components/ui/select.jsx +157 -0
  51. package/src/components/ui/separator.jsx +28 -0
  52. package/src/components/ui/sheet.jsx +117 -0
  53. package/src/components/ui/skeleton.jsx +13 -0
  54. package/src/components/ui/slider.jsx +63 -0
  55. package/src/components/ui/sonner.jsx +23 -0
  56. package/src/components/ui/switch.jsx +28 -0
  57. package/src/components/ui/table.jsx +113 -0
  58. package/src/components/ui/tabs.jsx +54 -0
  59. package/src/components/ui/textarea.jsx +18 -0
  60. package/src/components/ui/tooltip.jsx +49 -0
  61. package/src/lib/axios.js +8 -0
  62. package/src/lib/queryClient.js +11 -0
  63. package/src/lib/utils.js +6 -0
  64. package/src/providers/QueryProvider.jsx +15 -0
  65. package/src/shared/icons.js +308 -0
  66. package/src/styles/fonts.js +30 -0
  67. 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
+ }