Skip to content

Commit 0f50b34

Browse files
authored
Merge pull request #1 from YEL-59/tofayel-v1
Tofayel v1
2 parents 9206d48 + a82c06e commit 0f50b34

Some content is hidden

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

71 files changed

+9331
-1238
lines changed

.github/workflows/deploy.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: 🚀 Deploy to FTP on push
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
ftp-deploy:
10+
name: 🎉 Build & Deploy
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
17+
- name: Setup Node.js
18+
uses: actions/setup-node@v3
19+
with:
20+
node-version: "20"
21+
22+
- name: Install and Build
23+
run: |
24+
npm install
25+
npm run build
26+
27+
- name: FTP Deploy
28+
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
29+
with:
30+
server: 153.92.214.105
31+
username: ftp-karially
32+
password: ${{ secrets.FTP_PASSWORD }}
33+
protocol: ftp
34+
local-dir: dist/
35+
dangerous-clean-slate: true

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ node_modules
1111
dist
1212
dist-ssr
1313
*.local
14+
.env
1415

1516
# Editor directories and files
1617
.vscode/*

package.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,24 @@
1212
"dependencies": {
1313
"@emotion/react": "^11.14.0",
1414
"@emotion/styled": "^11.14.0",
15-
"@hookform/resolvers": "^5.0.1",
15+
"@hookform/resolvers": "^5.1.1",
1616
"@mui/material": "^7.1.1",
1717
"@radix-ui/react-accordion": "^1.2.11",
1818
"@radix-ui/react-avatar": "^1.1.10",
19+
"@radix-ui/react-checkbox": "^1.3.2",
1920
"@radix-ui/react-dialog": "^1.1.14",
2021
"@radix-ui/react-dropdown-menu": "^2.1.15",
22+
"@radix-ui/react-label": "^2.1.7",
2123
"@radix-ui/react-navigation-menu": "^1.2.13",
2224
"@radix-ui/react-progress": "^1.1.7",
2325
"@radix-ui/react-separator": "^1.1.7",
2426
"@radix-ui/react-slot": "^1.2.3",
2527
"@radix-ui/react-tabs": "^1.1.12",
2628
"@radix-ui/react-tooltip": "^1.2.7",
2729
"@tailwindcss/vite": "^4.1.7",
30+
"@tanstack/react-query": "^5.83.0",
2831
"aos": "^2.3.4",
32+
"axios": "^1.10.0",
2933
"class-variance-authority": "^0.7.1",
3034
"clsx": "^2.1.1",
3135
"framer-motion": "^12.15.0",
@@ -35,12 +39,13 @@
3539
"react": "^19.1.0",
3640
"react-dom": "^19.1.0",
3741
"react-fast-marquee": "^1.6.5",
38-
"react-hook-form": "^7.56.4",
42+
"react-hook-form": "^7.60.0",
43+
"react-hot-toast": "^2.5.2",
3944
"react-icons": "^5.5.0",
40-
"react-router": "^7.6.1",
45+
"react-router": "^7.6.3",
4146
"tailwind-merge": "^3.3.0",
4247
"tailwindcss": "^4.1.7",
43-
"zod": "^3.25.46"
48+
"zod": "^3.25.76"
4449
},
4550
"devDependencies": {
4651
"@eslint/js": "^9.25.0",

0 commit comments

Comments
 (0)