Skip to content

Commit 6ca6940

Browse files
committed
feat(auth): login added
1 parent c250edc commit 6ca6940

File tree

91 files changed

+3415
-224
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+3415
-224
lines changed

β€Žcomponents.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "default",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "tailwind.config.js",
8+
"css": "src/app/globals.css",
9+
"baseColor": "slate",
10+
"cssVariables": false
11+
},
12+
"aliases": {
13+
"components": "@/components",
14+
"utils": "@/lib/utils"
15+
}
16+
}

β€Žnext.config.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
export default {
22
experimental: {
3-
appDir: true,
43
serverActions: true,
54
},
65
images: {

β€Žpackage.json

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,34 +24,41 @@
2424
"@commitlint/config-conventional": "^17.4.4",
2525
"@headlessui/react": "^1.7.11",
2626
"@heroicons/react": "^2.0.16",
27+
"@hookform/resolvers": "^3.3.1",
2728
"@radix-ui/react-context-menu": "^2.1.3",
2829
"@radix-ui/react-dialog": "^1.0.2",
2930
"@radix-ui/react-dropdown-menu": "^2.0.2",
3031
"@radix-ui/react-hover-card": "^1.0.5",
31-
"@radix-ui/react-label": "^2.0.0",
32+
"@radix-ui/react-label": "^2.0.2",
3233
"@radix-ui/react-navigation-menu": "^1.1.1",
3334
"@radix-ui/react-popover": "^1.0.5",
3435
"@radix-ui/react-select": "^1.2.0",
3536
"@radix-ui/react-slider": "^1.1.1",
37+
"@radix-ui/react-slot": "^1.0.2",
3638
"@radix-ui/react-switch": "^1.0.2",
37-
"@supabase/auth-helpers-nextjs": "^0.7.3",
39+
"@supabase/auth-helpers-nextjs": "^0.8.1",
3840
"@supabase/auth-helpers-react": "^0.3.1",
3941
"@supabase/supabase-js": "^2.31.0",
4042
"@tailwindcss/typography": "^0.5.9",
4143
"@tanstack/react-query": "^4.24.10",
4244
"class-variance-authority": "^0.7.0",
4345
"clsx": "^2.0.0",
44-
"lucide-react": "0.206.0",
45-
"next": "^13.4.19",
46+
"lucide-react": "^0.279.0",
47+
"next": "^13.5.1",
4648
"next-seo": "^5.15.0",
4749
"next-sitemap": "^3.1.52",
4850
"react": "^18.2.0",
4951
"react-dom": "^18.2.0",
50-
"react-hot-toast": "^2.4.0",
52+
"react-hook-form": "^7.46.2",
53+
"react-hot-toast": "^2.4.1",
54+
"react-no-ssr": "^1.1.0",
55+
"rooks": "^7.14.1",
56+
"sonner": "^1.0.3",
5157
"tailwind-merge": "^1.14.0",
5258
"tailwindcss": "^3.2.7",
53-
"tailwindcss-animate": "^1.0.6",
54-
"url-join": "^5.0.0"
59+
"tailwindcss-animate": "^1.0.7",
60+
"url-join": "^5.0.0",
61+
"zod": "^3.22.2"
5562
},
5663
"devDependencies": {
5764
"@commitlint/cli": "^17.4.4",

β€Žpublic/assets/admin-image.png

2.27 MB
Loading
22.9 KB
Loading
21.8 KB
Loading
237 KB
Loading
1.41 MB
Loading

β€Žpublic/assets/logo-login.png

73.6 KB
Loading
44.5 KB
Loading

0 commit comments

Comments
Β (0)