Skip to content
This repository was archived by the owner on Mar 19, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
75cfe81
Merge pull request #4 from TheLoopersDev/dev
punhe Apr 23, 2025
a498341
Create production.yml
punhe Apr 23, 2025
672a0e7
feat: UI for sign in - sign up
congxdanh May 15, 2025
46b020b
chore: update lockfile
congxdanh May 15, 2025
14870c6
fix: Lint bug
congxdanh May 15, 2025
b197213
Merge pull request #10 from TheLoopersDev/feature/task-8_danh
punhe May 16, 2025
baf1d1c
Merge pull request #11 from TheLoopersDev/feature/task-8
punhe May 16, 2025
2b6d182
update: modify UI
punhe May 16, 2025
f2ffb6e
Merge remote-tracking branch 'origin/dev' into feature/task-6_hung
punhe May 16, 2025
fe0b1ac
delete: remove unsual comment
punhe May 17, 2025
53891db
fix: fix name of website
punhe May 17, 2025
5da9b74
update: convert to components
punhe May 17, 2025
e82ee90
chore: add framer-motion package to dependencies
punhe May 17, 2025
e793f57
update: enhance modal background with backdrop blur effect
punhe May 17, 2025
3249ec6
update: refine SignIn/SignUp component styles and structure
punhe May 17, 2025
11668de
feat: add AnimatedSection component for scroll-triggered animations
punhe May 17, 2025
9345c03
feat: enhance CourseCard with framer-motion animations for improved i…
punhe May 17, 2025
f69c812
feat: integrate framer-motion animations into ExpertCard for enhanced…
punhe May 17, 2025
aac5bfd
feat: implement framer-motion animations in CategoriesSection for enh…
punhe May 17, 2025
e29a88c
feat: add framer-motion animations to CourseGrid for enhanced course …
punhe May 17, 2025
0e6446f
feat: add framer-motion animations to ExpertsSection for improved exp…
punhe May 17, 2025
7f3d7b6
feat: implement framer-motion animations in HeroSection for enhanced …
punhe May 17, 2025
c03780a
feat: integrate framer-motion animations in LearningFocusSection for …
punhe May 17, 2025
0fc77ca
feat: integrate framer-motion animations in PersonalityTestSection fo…
punhe May 17, 2025
8f6f670
feat: integrate framer-motion animations in VideoSection for enhanced…
punhe May 17, 2025
dff3b89
feat: integrate framer-motion animations in WhyStudySection for enhan…
punhe May 17, 2025
b7fd9dd
feat: update Footer component to include modal functionality and rena…
punhe May 17, 2025
c4d7d89
feat: enhance Header component with modal functionality and improve l…
punhe May 17, 2025
3bc9855
feat: add FontAwesome library integration with Google icon for consis…
punhe May 17, 2025
df6a518
feat: add utility animations using framer-motion for consistent visua…
punhe May 17, 2025
da711fb
chore: update pnpm-lock.yaml to include framer-motion version 12.12.1…
punhe May 17, 2025
558044c
fix: change children prop to readonly in ClientLayout for better type…
punhe May 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Vercel Production Deployment

env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}

on:
push:
branches:
- main

jobs:
Deploy-Production:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v3

- name: Install Vercel CLI
run: npm install --global vercel

- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}

- name: Build Project Artifacts
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }}

- name: Deploy Project Artifacts
run: vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }}
Loading
Loading