Commit a445b1e
authored
Feature/landing page setup (#153)
* feat: Enhance SignInPage with form validation and loading state
- Implemented form validation using Zod and react-hook-form for email and password fields.
- Added loading state to improve user experience during sign-in.
- Integrated error handling for various sign-in scenarios, including unverified email and session management.
- Updated LoginForm component to accept form props and handle submission logic.
- Introduced Loading component for better visual feedback during loading states.
- Refactored AuthLayout for improved layout and responsiveness.
* feat: Revamp landing page structure and components
- Removed the old Home component and replaced it with a new layout for the landing page.
- Introduced a new LandingLayout component to encapsulate the Navbar and Footer.
- Created multiple new pages for the landing section, including About, Contact, Disclaimer, Grants, Hackathons, Privacy, Projects, and Terms of Service.
- Updated the Projects component to include pagination and improved project filtering based on user ownership and status.
- Enhanced the ProjectCard component to conditionally display the ellipsis menu based on project ownership.
- Added a Footer component for consistent navigation across the landing pages.
* feat: Update CampaignTable and pagination handling across user pages
- Modified CampaignTable component to accept `limit` and `showPagination` props for flexible display.
- Adjusted CampaignTable instances in UserPage and CampaignsPage to utilize new props.
- Refactored pagination logic in Projects component to streamline page navigation and improve user experience.
- Enhanced Pagination component for better integration and usability across different contexts.
* chore: Update Next.js version to 15.5.2 in package.json and package-lock.json
- Upgraded Next.js from 15.4.4 to 15.5.2 for improved performance and features.
- Updated related dependencies in package-lock.json to reflect the new version.
* feat: Refactor Projects and RecentProjects components for improved data fetching and dependency management
- Updated fetchProjects function in Projects component to include necessary dependencies for useCallback.
- Enhanced RecentProjects component to properly utilize fetchProjects with updated dependency array.
- Improved error handling and loading state management during project data fetching.
* feat: Add GSAP animations and new waitlist page
- Integrated GSAP for enhanced animations in the Navbar and new WaitlistPage component.
- Added form validation using Zod and react-hook-form for the waitlist form.
- Implemented character animations for the title and subtitle on the waitlist page.
- Updated package.json and package-lock.json to include GSAP and @gsap/react dependencies.
- Enhanced global styles with new CSS classes for animations and gradients.1 parent 7d464ca commit a445b1e
29 files changed
Lines changed: 1578 additions & 419 deletions
File tree
- app
- (landing)
- about
- code-of-conduct
- contact
- disclaimer
- grants
- hackathons
- privacy
- projects
- terms
- waitlist
- user
- campaigns
- components
- auth
- campaigns
- landing-page
- overview
- ui
- lib/api
- public
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
0 commit comments