feat: implement complete Biohazard VFX website with all pages and components

- Add all shadcn/ui components (button, card, form, dialog, navigation-menu, etc.)
- Create main layout with navigation header and footer
- Implement homepage with hero, showreel, featured projects, and capabilities
- Build about page with studio origins, values, and capabilities
- Create services page with detailed service offerings
- Implement portfolio page with masonry grid for varying aspect ratios
- Build contact page with 4-step multistep form
- Add project and service data structures with placeholder content
- Configure SEO metadata, canonical links, and JSON-LD schema
- Add font preloading and image lazy-loading for performance
- Configure Next.js Image for Unsplash remote patterns
- Fix Navigation component to use modern Link pattern (remove legacyBehavior)
- Add comprehensive README with project documentation
This commit is contained in:
NicholaiVogel 2025-10-12 03:47:12 -06:00
parent 54909d79e5
commit 633ef418d1
32 changed files with 3419 additions and 268 deletions

239
README.md
View File

@ -1,32 +1,30 @@
# Biohazard VFX Website
Official website for Biohazard VFX - showcasing our portfolio of visual effects work and studio capabilities.
## Tech Stack
- **Framework**: [Next.js 15](https://nextjs.org/) with App Router
- **Language**: [TypeScript](https://www.typescriptlang.org/)
- **Styling**: [Tailwind CSS v4](https://tailwindcss.com/)
- **UI Components**: [ShadCN UI](https://ui.shadcn.com/)
- **Deployment**: [Cloudflare Workers](https://workers.cloudflare.com/) via [OpenNext](https://open-next.js.org/)
- **Version Control**: Gitea with Gitea Actions CI/CD
A modern, minimal Next.js website for Biohazard VFX studio, built with React, TypeScript, Tailwind CSS, and shadcn/ui components.
## Features
- Modern, responsive design
- Optimized for performance
- SEO-friendly
- Dark mode support
- Portfolio showcase
- Accessible (WCAG compliant)
- **Homepage**: Hero section, studio showreel, featured projects, and capabilities overview
- **About**: Studio origins, values, technical capabilities, and client testimonials
- **Services**: Comprehensive service offerings with detailed descriptions
- **Portfolio**: Masonry grid layout showcasing projects with varying aspect ratios
- **Contact**: Multi-step smart contact form for efficient client intake
## Tech Stack
- **Framework**: Next.js 15.5.4 with App Router
- **Language**: TypeScript
- **Styling**: Tailwind CSS 4
- **UI Components**: shadcn/ui (New York style)
- **Icons**: Lucide React
- **Fonts**: Geist Sans & Geist Mono
## Getting Started
### Prerequisites
- Node.js 20.x or higher
- npm (comes with Node.js)
- Git
- Node.js 20+
- npm or yarn
### Installation
@ -41,173 +39,114 @@ Official website for Biohazard VFX - showcasing our portfolio of visual effects
npm install
```
3. Create environment variables file:
```bash
cp .env.example .env.local
```
Edit `.env.local` and add your environment variables.
4. Run the development server:
3. Run the development server:
```bash
npm run dev
```
5. Open [http://localhost:3000](http://localhost:3000) in your browser.
4. Open [http://localhost:3000](http://localhost:3000) in your browser.
## Development
### Available Scripts
## Available Scripts
- `npm run dev` - Start development server with Turbopack
- `npm run build` - Build the application for production
- `npm run build:open-next` - Build with OpenNext for Cloudflare deployment
- `npm run start` - Start production server locally
- `npm run build` - Build for production
- `npm run start` - Start production server
- `npm run lint` - Run ESLint
- `npm run type-check` - Run TypeScript type checking
### Project Structure
## Project Structure
```
biohazard-vfx-website/
├── .gitea/ # Gitea configuration
│ ├── workflows/ # CI/CD workflows
│ ├── issue_template/ # Issue templates
│ └── pull_request_template.md
├── src/
│ ├── app/ # Next.js App Router pages
│ ├── app/ # Next.js app directory
│ │ ├── about/ # About page
│ │ ├── contact/ # Contact page
│ │ ├── portfolio/ # Portfolio page
│ │ ├── services/ # Services page
│ │ ├── layout.tsx # Root layout with navigation & footer
│ │ ├── page.tsx # Homepage
│ │ └── globals.css # Global styles & CSS variables
│ ├── components/ # React components
│ │ └── ui/ # ShadCN UI components
│ ├── lib/ # Utility functions
│ └── hooks/ # Custom React hooks
│ │ ├── ui/ # shadcn/ui components
│ │ ├── Footer.tsx
│ │ ├── Hero.tsx
│ │ ├── MasonryGrid.tsx
│ │ ├── MultiStepForm.tsx
│ │ ├── Navigation.tsx
│ │ ├── ProjectCard.tsx
│ │ ├── ServiceCard.tsx
│ │ └── VideoPlayer.tsx
│ ├── data/ # Data files
│ │ ├── projects.ts # Project data
│ │ └── services.ts # Services data
│ └── lib/
│ └── utils.ts # Utility functions
├── public/ # Static assets
├── .env.example # Environment variables template
├── components.json # ShadCN UI configuration
├── next.config.ts # Next.js configuration
├── open-next.config.ts # OpenNext configuration
├── wrangler.toml # Cloudflare Workers configuration
├── tailwind.config.ts # Tailwind CSS configuration
└── tsconfig.json # TypeScript configuration
└── components.json # shadcn/ui configuration
```
### Adding UI Components
## Customization
This project uses ShadCN UI. To add a new component:
### Styling
```bash
npx shadcn@latest add button
npx shadcn@latest add card
# etc.
```
The project uses shadcn/ui with the New York style variant. You can quickly try different styles by:
Components will be added to `src/components/ui/`.
1. Modifying CSS variables in `src/app/globals.css`
2. Updating the shadcn theme in `components.json`
3. All components use shadcn classnames for easy theme switching
### Environment Variables
### Content
Create a `.env.local` file based on `.env.example`:
Update content in the data files:
```env
NEXT_PUBLIC_APP_NAME="Biohazard VFX"
NEXT_PUBLIC_APP_URL="http://localhost:3000"
```
- **Projects**: Edit `src/data/projects.ts`
- **Services**: Edit `src/data/services.ts`
Replace placeholder images with your own:
- Update image URLs in data files
- Add images to the `public/` directory
### Adding New Pages
1. Create a new directory in `src/app/`
2. Add a `page.tsx` file
3. Export metadata and default component
4. Update navigation in `src/components/Navigation.tsx`
## SEO & Performance
The site includes:
- ✅ Metadata for all pages
- ✅ Canonical links
- ✅ Open Graph tags
- ✅ JSON-LD structured data
- ✅ Font preloading
- ✅ Image lazy loading
- ✅ Next.js Image optimization
## Deployment
### Cloudflare Workers
### Vercel (Recommended)
This project uses OpenNext to deploy Next.js to Cloudflare Workers.
1. Push your code to GitHub
2. Import the project to Vercel
3. Deploy automatically
#### Prerequisites
### Other Platforms
1. Cloudflare account
2. Wrangler CLI installed (`npm install -g wrangler`)
3. Cloudflare API token with Workers permissions
Build the project and deploy the `.next` directory:
#### Deployment Steps
1. Configure `wrangler.toml` with your account details
2. Set up secrets in Gitea:
- `CLOUDFLARE_API_TOKEN`
- `CLOUDFLARE_ACCOUNT_ID`
3. Deploy:
```bash
npm run build:open-next
npx wrangler deploy
npm run build
npm run start
```
### Automatic Deployment
The project uses Gitea Actions for CI/CD:
- **Pull Requests**: Automatic preview deployment
- **Main Branch**: Automatic production deployment
- **Develop Branch**: Automatic development deployment
See `.gitea/workflows/` for workflow configurations.
## Contributing
We welcome contributions from internal developers! Please read [CONTRIBUTING.md](CONTRIBUTING.md) for:
- Development workflow
- Coding standards
- Git workflow
- Pull request process
- Testing guidelines
### Quick Contribution Guide
1. Create a feature branch from `develop`
2. Make your changes
3. Run linting and type checking
4. Create a Pull Request
5. Wait for review and CI checks
6. Address feedback
7. Merge after approval
## CI/CD
### Workflows
- **CI**: Runs linting, type checking, and builds on every PR
- **Deploy Preview**: Deploys preview environments for PRs
- **Deploy Production**: Deploys to production on main branch merges
### Status Badges
Add status badges here once workflows are running.
## Browser Support
- Chrome (latest)
- Firefox (latest)
- Safari (latest)
- Edge (latest)
## Performance
- Lighthouse Score Target: 90+
- First Contentful Paint: < 1.5s
- Time to Interactive: < 3.5s
- Largest Contentful Paint: < 2.5s
## License
Proprietary - Biohazard VFX. All rights reserved.
## Team
This project is maintained by the Biohazard VFX development team.
Private - All rights reserved to Biohazard VFX
## Support
For questions or issues:
- Create an issue using the appropriate template
- Contact the development team
- Check the [CONTRIBUTING.md](CONTRIBUTING.md) guide
---
Built with ❤️ by Biohazard VFX
For issues or questions, contact: info@biohazardvfx.com

View File

@ -9,6 +9,14 @@ const nextConfig: NextConfig = {
// Image optimization for Cloudflare
images: {
unoptimized: false,
remotePatterns: [
{
protocol: "https",
hostname: "images.unsplash.com",
port: "",
pathname: "/**",
},
],
},
};

900
package-lock.json generated
View File

@ -8,6 +8,14 @@
"name": "biohazard-vfx-website",
"version": "0.1.0",
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.545.0",
@ -15,7 +23,9 @@
"open-next": "^3.1.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwind-merge": "^3.3.1"
"react-hook-form": "^7.65.0",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
@ -1660,6 +1670,56 @@
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
}
},
"node_modules/@floating-ui/core": {
"version": "1.7.3",
"resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.3.tgz",
"integrity": "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==",
"license": "MIT",
"dependencies": {
"@floating-ui/utils": "^0.2.10"
}
},
"node_modules/@floating-ui/dom": {
"version": "1.7.4",
"resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.4.tgz",
"integrity": "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==",
"license": "MIT",
"dependencies": {
"@floating-ui/core": "^1.7.3",
"@floating-ui/utils": "^0.2.10"
}
},
"node_modules/@floating-ui/react-dom": {
"version": "2.1.6",
"resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.6.tgz",
"integrity": "sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==",
"license": "MIT",
"dependencies": {
"@floating-ui/dom": "^1.7.4"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
},
"node_modules/@floating-ui/utils": {
"version": "0.2.10",
"resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.10.tgz",
"integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==",
"license": "MIT"
},
"node_modules/@hookform/resolvers": {
"version": "5.2.2",
"resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-5.2.2.tgz",
"integrity": "sha512-A/IxlMLShx3KjV/HeTcTfaMxdwy690+L/ZADoeaTltLx+CVuzkeVIPuybK3jrRfw7YZnmdKsVVHAlEPIAEUNlA==",
"license": "MIT",
"dependencies": {
"@standard-schema/utils": "^0.3.0"
},
"peerDependencies": {
"react-hook-form": "^7.55.0"
}
},
"node_modules/@humanfs/core": {
"version": "0.19.1",
"resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
@ -2453,6 +2513,668 @@
"node": ">=12.4.0"
}
},
"node_modules/@radix-ui/number": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.1.tgz",
"integrity": "sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==",
"license": "MIT"
},
"node_modules/@radix-ui/primitive": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.3.tgz",
"integrity": "sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==",
"license": "MIT"
},
"node_modules/@radix-ui/react-arrow": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.7.tgz",
"integrity": "sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-primitive": "2.1.3"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-collection": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.7.tgz",
"integrity": "sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-compose-refs": "1.1.2",
"@radix-ui/react-context": "1.1.2",
"@radix-ui/react-primitive": "2.1.3",
"@radix-ui/react-slot": "1.2.3"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-compose-refs": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz",
"integrity": "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==",
"license": "MIT",
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-context": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz",
"integrity": "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==",
"license": "MIT",
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-dialog": {
"version": "1.1.15",
"resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.15.tgz",
"integrity": "sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==",
"license": "MIT",
"dependencies": {
"@radix-ui/primitive": "1.1.3",
"@radix-ui/react-compose-refs": "1.1.2",
"@radix-ui/react-context": "1.1.2",
"@radix-ui/react-dismissable-layer": "1.1.11",
"@radix-ui/react-focus-guards": "1.1.3",
"@radix-ui/react-focus-scope": "1.1.7",
"@radix-ui/react-id": "1.1.1",
"@radix-ui/react-portal": "1.1.9",
"@radix-ui/react-presence": "1.1.5",
"@radix-ui/react-primitive": "2.1.3",
"@radix-ui/react-slot": "1.2.3",
"@radix-ui/react-use-controllable-state": "1.2.2",
"aria-hidden": "^1.2.4",
"react-remove-scroll": "^2.6.3"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-direction": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.1.tgz",
"integrity": "sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==",
"license": "MIT",
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-dismissable-layer": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.11.tgz",
"integrity": "sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==",
"license": "MIT",
"dependencies": {
"@radix-ui/primitive": "1.1.3",
"@radix-ui/react-compose-refs": "1.1.2",
"@radix-ui/react-primitive": "2.1.3",
"@radix-ui/react-use-callback-ref": "1.1.1",
"@radix-ui/react-use-escape-keydown": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-focus-guards": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.3.tgz",
"integrity": "sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==",
"license": "MIT",
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-focus-scope": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.7.tgz",
"integrity": "sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-compose-refs": "1.1.2",
"@radix-ui/react-primitive": "2.1.3",
"@radix-ui/react-use-callback-ref": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-id": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.1.tgz",
"integrity": "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-use-layout-effect": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-label": {
"version": "2.1.7",
"resolved": "https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.1.7.tgz",
"integrity": "sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-primitive": "2.1.3"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-navigation-menu": {
"version": "1.2.14",
"resolved": "https://registry.npmjs.org/@radix-ui/react-navigation-menu/-/react-navigation-menu-1.2.14.tgz",
"integrity": "sha512-YB9mTFQvCOAQMHU+C/jVl96WmuWeltyUEpRJJky51huhds5W2FQr1J8D/16sQlf0ozxkPK8uF3niQMdUwZPv5w==",
"license": "MIT",
"dependencies": {
"@radix-ui/primitive": "1.1.3",
"@radix-ui/react-collection": "1.1.7",
"@radix-ui/react-compose-refs": "1.1.2",
"@radix-ui/react-context": "1.1.2",
"@radix-ui/react-direction": "1.1.1",
"@radix-ui/react-dismissable-layer": "1.1.11",
"@radix-ui/react-id": "1.1.1",
"@radix-ui/react-presence": "1.1.5",
"@radix-ui/react-primitive": "2.1.3",
"@radix-ui/react-use-callback-ref": "1.1.1",
"@radix-ui/react-use-controllable-state": "1.2.2",
"@radix-ui/react-use-layout-effect": "1.1.1",
"@radix-ui/react-use-previous": "1.1.1",
"@radix-ui/react-visually-hidden": "1.2.3"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-popper": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.2.8.tgz",
"integrity": "sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==",
"license": "MIT",
"dependencies": {
"@floating-ui/react-dom": "^2.0.0",
"@radix-ui/react-arrow": "1.1.7",
"@radix-ui/react-compose-refs": "1.1.2",
"@radix-ui/react-context": "1.1.2",
"@radix-ui/react-primitive": "2.1.3",
"@radix-ui/react-use-callback-ref": "1.1.1",
"@radix-ui/react-use-layout-effect": "1.1.1",
"@radix-ui/react-use-rect": "1.1.1",
"@radix-ui/react-use-size": "1.1.1",
"@radix-ui/rect": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-portal": {
"version": "1.1.9",
"resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.9.tgz",
"integrity": "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-primitive": "2.1.3",
"@radix-ui/react-use-layout-effect": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-presence": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.5.tgz",
"integrity": "sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-compose-refs": "1.1.2",
"@radix-ui/react-use-layout-effect": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-primitive": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz",
"integrity": "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-slot": "1.2.3"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-progress": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/@radix-ui/react-progress/-/react-progress-1.1.7.tgz",
"integrity": "sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-context": "1.1.2",
"@radix-ui/react-primitive": "2.1.3"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-select": {
"version": "2.2.6",
"resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-2.2.6.tgz",
"integrity": "sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==",
"license": "MIT",
"dependencies": {
"@radix-ui/number": "1.1.1",
"@radix-ui/primitive": "1.1.3",
"@radix-ui/react-collection": "1.1.7",
"@radix-ui/react-compose-refs": "1.1.2",
"@radix-ui/react-context": "1.1.2",
"@radix-ui/react-direction": "1.1.1",
"@radix-ui/react-dismissable-layer": "1.1.11",
"@radix-ui/react-focus-guards": "1.1.3",
"@radix-ui/react-focus-scope": "1.1.7",
"@radix-ui/react-id": "1.1.1",
"@radix-ui/react-popper": "1.2.8",
"@radix-ui/react-portal": "1.1.9",
"@radix-ui/react-primitive": "2.1.3",
"@radix-ui/react-slot": "1.2.3",
"@radix-ui/react-use-callback-ref": "1.1.1",
"@radix-ui/react-use-controllable-state": "1.2.2",
"@radix-ui/react-use-layout-effect": "1.1.1",
"@radix-ui/react-use-previous": "1.1.1",
"@radix-ui/react-visually-hidden": "1.2.3",
"aria-hidden": "^1.2.4",
"react-remove-scroll": "^2.6.3"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-separator": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.1.7.tgz",
"integrity": "sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-primitive": "2.1.3"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-slot": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz",
"integrity": "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-compose-refs": "1.1.2"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-use-callback-ref": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.1.tgz",
"integrity": "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==",
"license": "MIT",
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-use-controllable-state": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.2.2.tgz",
"integrity": "sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-use-effect-event": "0.0.2",
"@radix-ui/react-use-layout-effect": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-use-effect-event": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-effect-event/-/react-use-effect-event-0.0.2.tgz",
"integrity": "sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-use-layout-effect": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-use-escape-keydown": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.1.tgz",
"integrity": "sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-use-callback-ref": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-use-layout-effect": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz",
"integrity": "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==",
"license": "MIT",
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-use-previous": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.1.1.tgz",
"integrity": "sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==",
"license": "MIT",
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-use-rect": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.1.tgz",
"integrity": "sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==",
"license": "MIT",
"dependencies": {
"@radix-ui/rect": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-use-size": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.1.tgz",
"integrity": "sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-use-layout-effect": "1.1.1"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/@radix-ui/react-visually-hidden": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.2.3.tgz",
"integrity": "sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==",
"license": "MIT",
"dependencies": {
"@radix-ui/react-primitive": "2.1.3"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
}
},
"node_modules/@radix-ui/rect": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.1.tgz",
"integrity": "sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==",
"license": "MIT"
},
"node_modules/@rtsao/scc": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz",
@ -3198,6 +3920,12 @@
"node": ">=18.0.0"
}
},
"node_modules/@standard-schema/utils": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/@standard-schema/utils/-/utils-0.3.0.tgz",
"integrity": "sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==",
"license": "MIT"
},
"node_modules/@swc/helpers": {
"version": "0.5.15",
"resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
@ -3535,7 +4263,7 @@
"version": "19.2.2",
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.2.tgz",
"integrity": "sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA==",
"dev": true,
"devOptional": true,
"license": "MIT",
"dependencies": {
"csstype": "^3.0.2"
@ -3545,7 +4273,7 @@
"version": "19.2.1",
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.1.tgz",
"integrity": "sha512-/EEvYBdT3BflCWvTMO7YkYBHVE9Ci6XdqZciZANQgKpaiDRGOLIlRo91jbTNRQjgPFWVaRxcYc0luVNFitz57A==",
"dev": true,
"devOptional": true,
"license": "MIT",
"peerDependencies": {
"@types/react": "^19.2.0"
@ -4176,6 +4904,18 @@
"dev": true,
"license": "Python-2.0"
},
"node_modules/aria-hidden": {
"version": "1.2.6",
"resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.6.tgz",
"integrity": "sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==",
"license": "MIT",
"dependencies": {
"tslib": "^2.0.0"
},
"engines": {
"node": ">=10"
}
},
"node_modules/aria-query": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz",
@ -4633,7 +5373,7 @@
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
"dev": true,
"devOptional": true,
"license": "MIT"
},
"node_modules/damerau-levenshtein": {
@ -4767,6 +5507,12 @@
"node": ">=8"
}
},
"node_modules/detect-node-es": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz",
"integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==",
"license": "MIT"
},
"node_modules/doctrine": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
@ -5714,6 +6460,15 @@
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/get-nonce": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz",
"integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==",
"license": "MIT",
"engines": {
"node": ">=6"
}
},
"node_modules/get-proto": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
@ -7560,6 +8315,22 @@
"react": "^19.1.0"
}
},
"node_modules/react-hook-form": {
"version": "7.65.0",
"resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.65.0.tgz",
"integrity": "sha512-xtOzDz063WcXvGWaHgLNrNzlsdFgtUWcb32E6WFaGTd7kPZG3EeDusjdZfUsPwKCKVXy1ZlntifaHZ4l8pAsmw==",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/react-hook-form"
},
"peerDependencies": {
"react": "^16.8.0 || ^17 || ^18 || ^19"
}
},
"node_modules/react-is": {
"version": "16.13.1",
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
@ -7567,6 +8338,75 @@
"dev": true,
"license": "MIT"
},
"node_modules/react-remove-scroll": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.7.1.tgz",
"integrity": "sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==",
"license": "MIT",
"dependencies": {
"react-remove-scroll-bar": "^2.3.7",
"react-style-singleton": "^2.2.3",
"tslib": "^2.1.0",
"use-callback-ref": "^1.3.3",
"use-sidecar": "^1.1.3"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/react-remove-scroll-bar": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.8.tgz",
"integrity": "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==",
"license": "MIT",
"dependencies": {
"react-style-singleton": "^2.2.2",
"tslib": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/react-style-singleton": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.3.tgz",
"integrity": "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==",
"license": "MIT",
"dependencies": {
"get-nonce": "^1.0.0",
"tslib": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/reflect.getprototypeof": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz",
@ -8537,6 +9377,49 @@
"integrity": "sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw==",
"license": "MIT"
},
"node_modules/use-callback-ref": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.3.tgz",
"integrity": "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==",
"license": "MIT",
"dependencies": {
"tslib": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/use-sidecar": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.3.tgz",
"integrity": "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==",
"license": "MIT",
"dependencies": {
"detect-node-es": "^1.1.0",
"tslib": "^2.0.0"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"@types/react": "*",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
}
},
"node_modules/which": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
@ -8674,6 +9557,15 @@
"funding": {
"url": "https://github.com/sponsors/sindresorhus"
}
},
"node_modules/zod": {
"version": "4.1.12",
"resolved": "https://registry.npmjs.org/zod/-/zod-4.1.12.tgz",
"integrity": "sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==",
"license": "MIT",
"funding": {
"url": "https://github.com/sponsors/colinhacks"
}
}
}
}

View File

@ -11,6 +11,14 @@
"type-check": "tsc --noEmit"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-navigation-menu": "^1.2.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.545.0",
@ -18,7 +26,9 @@
"open-next": "^3.1.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwind-merge": "^3.3.1"
"react-hook-form": "^7.65.0",
"tailwind-merge": "^3.3.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3",

232
src/app/about/page.tsx Normal file
View File

@ -0,0 +1,232 @@
import type { Metadata } from "next";
import Image from "next/image";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { Separator } from "@/components/ui/separator";
import { Badge } from "@/components/ui/badge";
import { Users, Target, Lightbulb, Trophy } from "lucide-react";
export const metadata: Metadata = {
title: "About Us - Biohazard VFX",
description: "Learn about Biohazard VFX, our origins, team, and capabilities in creating world-class visual effects.",
alternates: {
canonical: "/about",
},
};
export default function AboutPage() {
return (
<>
{/* Hero Section */}
<section className="container py-24 text-center">
<div className="space-y-4 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold tracking-tighter sm:text-5xl md:text-6xl">
About Biohazard VFX
</h1>
<p className="text-lg text-muted-foreground sm:text-xl">
A studio born from passion, driven by innovation, and committed to excellence in visual storytelling.
</p>
</div>
</section>
{/* Origin Story Section */}
<section className="container py-16">
<div className="grid gap-12 lg:grid-cols-2 lg:gap-16">
<div className="space-y-4">
<h2 className="text-3xl font-bold tracking-tighter">Our Story</h2>
<div className="space-y-4 text-muted-foreground">
<p>
Founded in 2015, Biohazard VFX emerged from a simple belief: that visual effects should not just enhance a story, but elevate it to new heights. What started as a small collective of passionate artists has grown into a full-service VFX studio trusted by filmmakers and brands worldwide.
</p>
<p>
Our journey began with a handful of independent film projects, where we learned the importance of collaboration, creativity, and technical excellence. Each project taught us something new, pushing us to explore the boundaries of what&apos;s possible in visual storytelling.
</p>
<p>
Today, we&apos;re proud to work on feature films, television series, commercials, and digital content that reaches millions of viewers. But our core mission remains unchanged: to create extraordinary visual experiences that captivate and inspire.
</p>
</div>
</div>
<div className="relative aspect-video lg:aspect-square">
<Image
src="https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=800&q=80"
alt="Biohazard VFX team at work"
fill
className="rounded-lg object-cover"
loading="lazy"
/>
</div>
</div>
</section>
<Separator className="container" />
{/* Values Section */}
<section className="container py-16">
<div className="space-y-4 text-center mb-12">
<h2 className="text-3xl font-bold tracking-tighter sm:text-4xl">
Our Values
</h2>
<p className="mx-auto max-w-2xl text-muted-foreground">
The principles that guide everything we do
</p>
</div>
<div className="grid gap-6 sm:grid-cols-2 lg:grid-cols-4">
<Card>
<CardHeader>
<Lightbulb className="h-8 w-8 text-primary mb-2" />
<CardTitle>Innovation</CardTitle>
<CardDescription>
Constantly pushing the boundaries of what&apos;s possible with cutting-edge techniques and creative problem-solving.
</CardDescription>
</CardHeader>
</Card>
<Card>
<CardHeader>
<Users className="h-8 w-8 text-primary mb-2" />
<CardTitle>Collaboration</CardTitle>
<CardDescription>
Working closely with our clients as partners to bring their creative visions to life.
</CardDescription>
</CardHeader>
</Card>
<Card>
<CardHeader>
<Trophy className="h-8 w-8 text-primary mb-2" />
<CardTitle>Excellence</CardTitle>
<CardDescription>
Delivering the highest quality work on every project, regardless of size or budget.
</CardDescription>
</CardHeader>
</Card>
<Card>
<CardHeader>
<Target className="h-8 w-8 text-primary mb-2" />
<CardTitle>Precision</CardTitle>
<CardDescription>
Meticulous attention to detail ensures every frame meets our exacting standards.
</CardDescription>
</CardHeader>
</Card>
</div>
</section>
<Separator className="container" />
{/* Capabilities Section */}
<section className="container py-16">
<div className="space-y-4 text-center mb-12">
<h2 className="text-3xl font-bold tracking-tighter sm:text-4xl">
Technical Capabilities
</h2>
<p className="mx-auto max-w-2xl text-muted-foreground">
State-of-the-art tools and expertise to handle any challenge
</p>
</div>
<div className="grid gap-8 lg:grid-cols-2">
<Card>
<CardHeader>
<CardTitle>Software & Tools</CardTitle>
<CardDescription>
Industry-standard and cutting-edge software for every aspect of production
</CardDescription>
</CardHeader>
<CardContent>
<div className="flex flex-wrap gap-2">
<Badge>Adobe After Effects</Badge>
<Badge>Nuke</Badge>
<Badge>Cinema 4D</Badge>
<Badge>Blender</Badge>
<Badge>Houdini</Badge>
<Badge>Maya</Badge>
<Badge>3ds Max</Badge>
<Badge>DaVinci Resolve</Badge>
<Badge>Unreal Engine</Badge>
<Badge>Unity</Badge>
<Badge>Substance Painter</Badge>
<Badge>ZBrush</Badge>
</div>
</CardContent>
</Card>
<Card>
<CardHeader>
<CardTitle>Our Expertise</CardTitle>
<CardDescription>
Specialized skills across all aspects of visual effects and animation
</CardDescription>
</CardHeader>
<CardContent>
<div className="space-y-3">
<div>
<h4 className="font-semibold mb-2">Visual Effects</h4>
<p className="text-sm text-muted-foreground">
Photorealistic CGI, matte painting, set extensions, and seamless compositing
</p>
</div>
<div>
<h4 className="font-semibold mb-2">Motion Graphics</h4>
<p className="text-sm text-muted-foreground">
2D/3D animation, title sequences, broadcast graphics, and motion design
</p>
</div>
<div>
<h4 className="font-semibold mb-2">Simulation</h4>
<p className="text-sm text-muted-foreground">
Destruction, fluids, particles, cloth, hair, and crowd simulation
</p>
</div>
<div>
<h4 className="font-semibold mb-2">Post-Production</h4>
<p className="text-sm text-muted-foreground">
Color grading, cleanup, tracking, rotoscoping, and finishing
</p>
</div>
</div>
</CardContent>
</Card>
</div>
</section>
{/* Client Testimonials Placeholder */}
<section className="container py-16">
<div className="space-y-4 text-center mb-12">
<h2 className="text-3xl font-bold tracking-tighter sm:text-4xl">
Trusted by Industry Leaders
</h2>
<p className="mx-auto max-w-2xl text-muted-foreground">
We&apos;ve had the privilege of working with amazing clients on incredible projects
</p>
</div>
<div className="grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
<Card>
<CardContent className="pt-6">
<p className="text-muted-foreground italic mb-4">
&quot;The team at Biohazard VFX delivered beyond our expectations. Their attention to detail and creative problem-solving made our impossible vision a reality.&quot;
</p>
<p className="font-semibold">Production Studio A</p>
<p className="text-sm text-muted-foreground">Feature Film Director</p>
</CardContent>
</Card>
<Card>
<CardContent className="pt-6">
<p className="text-muted-foreground italic mb-4">
&quot;Professional, efficient, and incredibly talented. They understood our brand and delivered stunning visuals that elevated our campaign.&quot;
</p>
<p className="font-semibold">Brand Client B</p>
<p className="text-sm text-muted-foreground">Creative Director</p>
</CardContent>
</Card>
<Card>
<CardContent className="pt-6">
<p className="text-muted-foreground italic mb-4">
&quot;Working with Biohazard VFX was a game-changer for our series. Their VFX work seamlessly integrated with our live-action footage.&quot;
</p>
<p className="font-semibold">TV Production C</p>
<p className="text-sm text-muted-foreground">Executive Producer</p>
</CardContent>
</Card>
</div>
</section>
</>
);
}

69
src/app/contact/page.tsx Normal file
View File

@ -0,0 +1,69 @@
import type { Metadata } from "next";
import { MultiStepForm } from "@/components/MultiStepForm";
import { Card, CardContent } from "@/components/ui/card";
import { Mail, Phone, MapPin } from "lucide-react";
export const metadata: Metadata = {
title: "Contact Us - Biohazard VFX",
description: "Get in touch with Biohazard VFX to discuss your project. Fill out our smart contact form to get started quickly.",
alternates: {
canonical: "/contact",
},
};
export default function ContactPage() {
return (
<>
{/* Hero Section */}
<section className="container py-24 text-center">
<div className="space-y-4 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold tracking-tighter sm:text-5xl md:text-6xl">
Let&apos;s Work Together
</h1>
<p className="text-lg text-muted-foreground sm:text-xl">
Ready to bring your vision to life? Fill out the form below and we&apos;ll get back to you within 24 hours.
</p>
</div>
</section>
{/* Contact Form Section */}
<section className="container pb-16">
<MultiStepForm />
</section>
{/* Contact Information */}
<section className="container pb-24">
<div className="grid gap-6 sm:grid-cols-3 max-w-4xl mx-auto">
<Card>
<CardContent className="flex flex-col items-center gap-2 pt-6 text-center">
<Mail className="h-8 w-8 text-primary" />
<h3 className="font-semibold">Email</h3>
<p className="text-sm text-muted-foreground">
info@biohazardvfx.com
</p>
</CardContent>
</Card>
<Card>
<CardContent className="flex flex-col items-center gap-2 pt-6 text-center">
<Phone className="h-8 w-8 text-primary" />
<h3 className="font-semibold">Phone</h3>
<p className="text-sm text-muted-foreground">
+1 (555) 123-4567
</p>
</CardContent>
</Card>
<Card>
<CardContent className="flex flex-col items-center gap-2 pt-6 text-center">
<MapPin className="h-8 w-8 text-primary" />
<h3 className="font-semibold">Location</h3>
<p className="text-sm text-muted-foreground">
Los Angeles, CA
</p>
</CardContent>
</Card>
</div>
</section>
</>
);
}

View File

@ -1,20 +1,42 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { Navigation } from "@/components/Navigation";
import { Footer } from "@/components/Footer";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
display: "swap",
preload: true,
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
display: "swap",
preload: true,
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Biohazard VFX - Professional Visual Effects Studio",
description: "Creating stunning visual effects for film, television, and digital media. Expert VFX, motion graphics, compositing, and 3D animation services.",
metadataBase: new URL("https://biohazardvfx.com"),
alternates: {
canonical: "/",
},
openGraph: {
title: "Biohazard VFX - Professional Visual Effects Studio",
description: "Creating stunning visual effects for film, television, and digital media.",
type: "website",
locale: "en_US",
siteName: "Biohazard VFX",
},
twitter: {
card: "summary_large_image",
title: "Biohazard VFX - Professional Visual Effects Studio",
description: "Creating stunning visual effects for film, television, and digital media.",
},
};
export default function RootLayout({
@ -22,12 +44,34 @@ export default function RootLayout({
}: Readonly<{
children: React.ReactNode;
}>) {
const jsonLd = {
"@context": "https://schema.org",
"@type": "Organization",
name: "Biohazard VFX",
description: "Professional visual effects studio specializing in film, television, and digital media",
url: "https://biohazardvfx.com",
logo: "https://biohazardvfx.com/logo.png",
sameAs: [],
};
return (
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossOrigin="anonymous" />
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(jsonLd) }}
/>
</head>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<Navigation />
<main className="min-h-screen">
{children}
</main>
<Footer />
</body>
</html>
);

View File

@ -1,103 +1,131 @@
import Image from "next/image";
import Link from "next/link";
import { Hero } from "@/components/Hero";
import { VideoPlayer } from "@/components/VideoPlayer";
import { ProjectCard } from "@/components/ProjectCard";
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { Separator } from "@/components/ui/separator";
import { projects, studioReel } from "@/data/projects";
import { Sparkles, Zap, Award } from "lucide-react";
export default function Home() {
return (
<div className="font-sans grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20">
<main className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start">
<Image
className="dark:invert"
src="/next.svg"
alt="Next.js logo"
width={180}
height={38}
priority
/>
<ol className="font-mono list-inside list-decimal text-sm/6 text-center sm:text-left">
<li className="mb-2 tracking-[-.01em]">
Get started by editing{" "}
<code className="bg-black/[.05] dark:bg-white/[.06] font-mono font-semibold px-1 py-0.5 rounded">
src/app/page.tsx
</code>
.
</li>
<li className="tracking-[-.01em]">
Save and see your changes instantly.
</li>
</ol>
const featuredProjects = projects.filter((p) => p.featured);
<div className="flex gap-4 items-center flex-col sm:flex-row">
<a
className="rounded-full border border-solid border-transparent transition-colors flex items-center justify-center bg-foreground text-background gap-2 hover:bg-[#383838] dark:hover:bg-[#ccc] font-medium text-sm sm:text-base h-10 sm:h-12 px-4 sm:px-5 sm:w-auto"
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
<Image
className="dark:invert"
src="/vercel.svg"
alt="Vercel logomark"
width={20}
height={20}
return (
<>
<Hero
title="Crafting Extraordinary Visual Experiences"
subtitle="Award-winning visual effects studio delivering stunning VFX, motion graphics, and 3D animation for film, television, and digital media."
/>
Deploy now
</a>
<a
className="rounded-full border border-solid border-black/[.08] dark:border-white/[.145] transition-colors flex items-center justify-center hover:bg-[#f2f2f2] dark:hover:bg-[#1a1a1a] hover:border-transparent font-medium text-sm sm:text-base h-10 sm:h-12 px-4 sm:px-5 w-full sm:w-auto md:w-[158px]"
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
Read our docs
</a>
{/* Studio Reel Section */}
<section className="container py-16">
<div className="space-y-4 text-center">
<h2 className="text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl">
Our Studio Reel
</h2>
<p className="mx-auto max-w-2xl text-muted-foreground">
A showcase of our best work from the past year
</p>
</div>
</main>
<footer className="row-start-3 flex gap-[24px] flex-wrap items-center justify-center">
<a
className="flex items-center gap-2 hover:underline hover:underline-offset-4"
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
<Image
aria-hidden
src="/file.svg"
alt="File icon"
width={16}
height={16}
<div className="mt-8">
<VideoPlayer
videoUrl={studioReel.videoUrl}
thumbnailUrl={studioReel.thumbnailUrl}
title={studioReel.title}
className="aspect-video w-full"
/>
Learn
</a>
<a
className="flex items-center gap-2 hover:underline hover:underline-offset-4"
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
<Image
aria-hidden
src="/window.svg"
alt="Window icon"
width={16}
height={16}
/>
Examples
</a>
<a
className="flex items-center gap-2 hover:underline hover:underline-offset-4"
href="https://nextjs.org?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
target="_blank"
rel="noopener noreferrer"
>
<Image
aria-hidden
src="/globe.svg"
alt="Globe icon"
width={16}
height={16}
/>
Go to nextjs.org
</a>
</footer>
</div>
</section>
<Separator className="container" />
{/* Featured Projects Section */}
<section className="container py-16">
<div className="space-y-4 text-center">
<h2 className="text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl">
Featured Projects
</h2>
<p className="mx-auto max-w-2xl text-muted-foreground">
A selection of our recent work across film, commercial, and digital media
</p>
</div>
<div className="mt-12 grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
{featuredProjects.map((project) => (
<ProjectCard key={project.id} project={project} />
))}
</div>
<div className="mt-12 text-center">
<Button asChild size="lg">
<Link href="/portfolio">View Full Portfolio</Link>
</Button>
</div>
</section>
<Separator className="container" />
{/* Capabilities Section */}
<section className="container py-16">
<div className="space-y-4 text-center">
<h2 className="text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl">
Our Capabilities
</h2>
<p className="mx-auto max-w-2xl text-muted-foreground">
Comprehensive visual effects services backed by years of industry experience
</p>
</div>
<div className="mt-12 grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
<Card>
<CardHeader>
<Sparkles className="h-8 w-8 text-primary" />
<CardTitle>Industry-Leading Technology</CardTitle>
<CardDescription>
Utilizing the latest tools and techniques to deliver photorealistic VFX that seamlessly integrate with your footage.
</CardDescription>
</CardHeader>
</Card>
<Card>
<CardHeader>
<Zap className="h-8 w-8 text-primary" />
<CardTitle>Fast Turnaround</CardTitle>
<CardDescription>
Efficient pipeline and experienced team ensure your project stays on schedule without compromising quality.
</CardDescription>
</CardHeader>
</Card>
<Card>
<CardHeader>
<Award className="h-8 w-8 text-primary" />
<CardTitle>Award-Winning Team</CardTitle>
<CardDescription>
Our artists have contributed to numerous award-winning productions across film and television.
</CardDescription>
</CardHeader>
</Card>
</div>
</section>
{/* CTA Section */}
<section className="container py-16">
<Card className="border-2">
<CardContent className="flex flex-col items-center gap-6 p-12 text-center">
<h2 className="text-3xl font-bold tracking-tighter sm:text-4xl">
Ready to Bring Your Vision to Life?
</h2>
<p className="max-w-2xl text-muted-foreground">
Let&apos;s discuss your project and how we can help you create something extraordinary.
</p>
<div className="flex flex-col gap-4 sm:flex-row">
<Button asChild size="lg">
<Link href="/contact">Start a Project</Link>
</Button>
<Button asChild size="lg" variant="outline">
<Link href="/services">Explore Services</Link>
</Button>
</div>
</CardContent>
</Card>
</section>
</>
);
}

View File

@ -0,0 +1,35 @@
import type { Metadata } from "next";
import { MasonryGrid } from "@/components/MasonryGrid";
import { projects } from "@/data/projects";
export const metadata: Metadata = {
title: "Portfolio - Biohazard VFX",
description: "Explore our portfolio of visual effects work including film, television, commercials, and digital media projects.",
alternates: {
canonical: "/portfolio",
},
};
export default function PortfolioPage() {
return (
<>
{/* Hero Section */}
<section className="container py-24 text-center">
<div className="space-y-4 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold tracking-tighter sm:text-5xl md:text-6xl">
Our Portfolio
</h1>
<p className="text-lg text-muted-foreground sm:text-xl">
A showcase of our visual effects work across film, television, commercials, and digital media.
</p>
</div>
</section>
{/* Portfolio Grid */}
<section className="container pb-24">
<MasonryGrid projects={projects} />
</section>
</>
);
}

116
src/app/services/page.tsx Normal file
View File

@ -0,0 +1,116 @@
import type { Metadata } from "next";
import Link from "next/link";
import { Button } from "@/components/ui/button";
import { ServiceCard } from "@/components/ServiceCard";
import { Separator } from "@/components/ui/separator";
import { services } from "@/data/services";
export const metadata: Metadata = {
title: "Our Services - Biohazard VFX",
description: "Explore our comprehensive VFX services including visual effects, motion graphics, compositing, 3D animation, simulation, and color grading.",
alternates: {
canonical: "/services",
},
};
export default function ServicesPage() {
return (
<>
{/* Hero Section */}
<section className="container py-24 text-center">
<div className="space-y-4 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold tracking-tighter sm:text-5xl md:text-6xl">
Our Services
</h1>
<p className="text-lg text-muted-foreground sm:text-xl">
Comprehensive visual effects solutions tailored to your creative vision and production needs.
</p>
</div>
</section>
{/* Services Grid */}
<section className="container pb-16">
<div className="grid gap-6 sm:grid-cols-2 lg:grid-cols-3">
{services.map((service) => (
<ServiceCard key={service.id} service={service} />
))}
</div>
</section>
<Separator className="container" />
{/* Process Section */}
<section className="container py-16">
<div className="space-y-4 text-center mb-12">
<h2 className="text-3xl font-bold tracking-tighter sm:text-4xl">
Our Process
</h2>
<p className="mx-auto max-w-2xl text-muted-foreground">
A streamlined workflow designed for efficiency and excellence
</p>
</div>
<div className="grid gap-8 md:grid-cols-2 lg:grid-cols-4">
<div className="space-y-2">
<div className="flex h-12 w-12 items-center justify-center rounded-lg bg-primary text-primary-foreground text-xl font-bold">
1
</div>
<h3 className="text-xl font-bold">Discovery</h3>
<p className="text-muted-foreground">
We start by understanding your project goals, creative vision, and technical requirements.
</p>
</div>
<div className="space-y-2">
<div className="flex h-12 w-12 items-center justify-center rounded-lg bg-primary text-primary-foreground text-xl font-bold">
2
</div>
<h3 className="text-xl font-bold">Planning</h3>
<p className="text-muted-foreground">
Detailed planning, concept development, and establishing workflows for your specific needs.
</p>
</div>
<div className="space-y-2">
<div className="flex h-12 w-12 items-center justify-center rounded-lg bg-primary text-primary-foreground text-xl font-bold">
3
</div>
<h3 className="text-xl font-bold">Production</h3>
<p className="text-muted-foreground">
Expert execution of VFX work with regular updates and collaborative feedback loops.
</p>
</div>
<div className="space-y-2">
<div className="flex h-12 w-12 items-center justify-center rounded-lg bg-primary text-primary-foreground text-xl font-bold">
4
</div>
<h3 className="text-xl font-bold">Delivery</h3>
<p className="text-muted-foreground">
Final review, revisions, and delivery in your required formats and specifications.
</p>
</div>
</div>
</section>
<Separator className="container" />
{/* CTA Section */}
<section className="container py-16">
<div className="text-center space-y-6 max-w-3xl mx-auto">
<h2 className="text-3xl font-bold tracking-tighter sm:text-4xl">
Ready to Start Your Project?
</h2>
<p className="text-lg text-muted-foreground">
Let&apos;s discuss how our services can bring your creative vision to life. Contact us today for a consultation.
</p>
<div className="flex flex-col gap-4 sm:flex-row justify-center">
<Button asChild size="lg">
<Link href="/contact">Get in Touch</Link>
</Button>
<Button asChild size="lg" variant="outline">
<Link href="/portfolio">View Our Work</Link>
</Button>
</div>
</div>
</section>
</>
);
}

86
src/components/Footer.tsx Normal file
View File

@ -0,0 +1,86 @@
import Link from "next/link";
import { Separator } from "@/components/ui/separator";
export function Footer() {
const currentYear = new Date().getFullYear();
return (
<footer className="border-t bg-background">
<div className="container py-12">
<div className="grid grid-cols-1 gap-8 md:grid-cols-4">
<div className="space-y-4">
<h3 className="text-lg font-semibold">Biohazard VFX</h3>
<p className="text-sm text-muted-foreground">
Creating stunning visual effects for film, television, and digital media.
</p>
</div>
<div className="space-y-4">
<h4 className="text-sm font-semibold">Navigation</h4>
<ul className="space-y-2 text-sm">
<li>
<Link href="/" className="text-muted-foreground hover:text-foreground transition-colors">
Home
</Link>
</li>
<li>
<Link href="/about" className="text-muted-foreground hover:text-foreground transition-colors">
About
</Link>
</li>
<li>
<Link href="/services" className="text-muted-foreground hover:text-foreground transition-colors">
Services
</Link>
</li>
<li>
<Link href="/portfolio" className="text-muted-foreground hover:text-foreground transition-colors">
Portfolio
</Link>
</li>
</ul>
</div>
<div className="space-y-4">
<h4 className="text-sm font-semibold">Services</h4>
<ul className="space-y-2 text-sm">
<li className="text-muted-foreground">Visual Effects</li>
<li className="text-muted-foreground">Motion Graphics</li>
<li className="text-muted-foreground">Compositing</li>
<li className="text-muted-foreground">3D Animation</li>
</ul>
</div>
<div className="space-y-4">
<h4 className="text-sm font-semibold">Contact</h4>
<ul className="space-y-2 text-sm">
<li>
<Link href="/contact" className="text-muted-foreground hover:text-foreground transition-colors">
Get in Touch
</Link>
</li>
<li className="text-muted-foreground">info@biohazardvfx.com</li>
</ul>
</div>
</div>
<Separator className="my-8" />
<div className="flex flex-col items-center justify-between gap-4 md:flex-row">
<p className="text-sm text-muted-foreground">
© {currentYear} Biohazard VFX. All rights reserved.
</p>
<div className="flex gap-4 text-sm text-muted-foreground">
<Link href="#" className="hover:text-foreground transition-colors">
Privacy Policy
</Link>
<Link href="#" className="hover:text-foreground transition-colors">
Terms of Service
</Link>
</div>
</div>
</div>
</footer>
);
}

42
src/components/Hero.tsx Normal file
View File

@ -0,0 +1,42 @@
import Link from "next/link";
import { Button } from "@/components/ui/button";
interface HeroProps {
title: string;
subtitle: string;
ctaText?: string;
ctaLink?: string;
secondaryCtaText?: string;
secondaryCtaLink?: string;
}
export function Hero({
title,
subtitle,
ctaText = "View Portfolio",
ctaLink = "/portfolio",
secondaryCtaText = "Get in Touch",
secondaryCtaLink = "/contact",
}: HeroProps) {
return (
<section className="container flex flex-col items-center justify-center space-y-8 py-24 text-center md:py-32">
<div className="space-y-4 max-w-4xl">
<h1 className="text-4xl font-bold tracking-tighter sm:text-5xl md:text-6xl lg:text-7xl">
{title}
</h1>
<p className="mx-auto max-w-2xl text-lg text-muted-foreground sm:text-xl">
{subtitle}
</p>
</div>
<div className="flex flex-col gap-4 sm:flex-row">
<Button asChild size="lg">
<Link href={ctaLink}>{ctaText}</Link>
</Button>
<Button asChild size="lg" variant="outline">
<Link href={secondaryCtaLink}>{secondaryCtaText}</Link>
</Button>
</div>
</section>
);
}

View File

@ -0,0 +1,21 @@
"use client";
import { ProjectCard } from "@/components/ProjectCard";
import type { Project } from "@/data/projects";
interface MasonryGridProps {
projects: Project[];
}
export function MasonryGrid({ projects }: MasonryGridProps) {
return (
<div className="columns-1 gap-6 space-y-6 sm:columns-2 lg:columns-3">
{projects.map((project) => (
<div key={project.id} className="break-inside-avoid">
<ProjectCard project={project} />
</div>
))}
</div>
);
}

View File

@ -0,0 +1,328 @@
"use client";
import { useState } from "react";
import { Button } from "@/components/ui/button";
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { Input } from "@/components/ui/input";
import { Textarea } from "@/components/ui/textarea";
import { Label } from "@/components/ui/label";
import { Progress } from "@/components/ui/progress";
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select";
import { ArrowLeft, ArrowRight, Check } from "lucide-react";
interface FormData {
projectType: string;
budget: string;
timeline: string;
projectDetails: string;
name: string;
email: string;
phone: string;
company: string;
}
export function MultiStepForm() {
const [currentStep, setCurrentStep] = useState(1);
const [formData, setFormData] = useState<FormData>({
projectType: "",
budget: "",
timeline: "",
projectDetails: "",
name: "",
email: "",
phone: "",
company: "",
});
const totalSteps = 4;
const progress = (currentStep / totalSteps) * 100;
const updateFormData = (field: keyof FormData, value: string) => {
setFormData((prev) => ({ ...prev, [field]: value }));
};
const nextStep = () => {
if (currentStep < totalSteps) {
setCurrentStep((prev) => prev + 1);
}
};
const prevStep = () => {
if (currentStep > 1) {
setCurrentStep((prev) => prev - 1);
}
};
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
console.log("Form submitted:", formData);
// Handle form submission
};
return (
<div className="mx-auto w-full max-w-2xl space-y-6">
<div className="space-y-2">
<div className="flex items-center justify-between text-sm text-muted-foreground">
<span>Step {currentStep} of {totalSteps}</span>
<span>{Math.round(progress)}%</span>
</div>
<Progress value={progress} className="h-2" />
</div>
<form onSubmit={handleSubmit}>
{currentStep === 1 && (
<Card>
<CardHeader>
<CardTitle>Project Type & Service</CardTitle>
<CardDescription>
What kind of project are you looking to create?
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="space-y-2">
<Label htmlFor="projectType">Project Type</Label>
<Select
value={formData.projectType}
onValueChange={(value) => updateFormData("projectType", value)}
>
<SelectTrigger id="projectType">
<SelectValue placeholder="Select a project type" />
</SelectTrigger>
<SelectContent>
<SelectItem value="film">Film Production</SelectItem>
<SelectItem value="commercial">Commercial</SelectItem>
<SelectItem value="music-video">Music Video</SelectItem>
<SelectItem value="motion-graphics">Motion Graphics</SelectItem>
<SelectItem value="vfx">Visual Effects</SelectItem>
<SelectItem value="animation">3D Animation</SelectItem>
<SelectItem value="other">Other</SelectItem>
</SelectContent>
</Select>
</div>
<div className="space-y-2">
<Label htmlFor="budget">Budget Range</Label>
<Select
value={formData.budget}
onValueChange={(value) => updateFormData("budget", value)}
>
<SelectTrigger id="budget">
<SelectValue placeholder="Select a budget range" />
</SelectTrigger>
<SelectContent>
<SelectItem value="under-10k">Under $10,000</SelectItem>
<SelectItem value="10k-25k">$10,000 - $25,000</SelectItem>
<SelectItem value="25k-50k">$25,000 - $50,000</SelectItem>
<SelectItem value="50k-100k">$50,000 - $100,000</SelectItem>
<SelectItem value="over-100k">Over $100,000</SelectItem>
</SelectContent>
</Select>
</div>
<div className="space-y-2">
<Label htmlFor="timeline">Timeline</Label>
<Select
value={formData.timeline}
onValueChange={(value) => updateFormData("timeline", value)}
>
<SelectTrigger id="timeline">
<SelectValue placeholder="Select your timeline" />
</SelectTrigger>
<SelectContent>
<SelectItem value="urgent">Urgent (1-2 weeks)</SelectItem>
<SelectItem value="1-month">1 Month</SelectItem>
<SelectItem value="2-3-months">2-3 Months</SelectItem>
<SelectItem value="3-6-months">3-6 Months</SelectItem>
<SelectItem value="flexible">Flexible</SelectItem>
</SelectContent>
</Select>
</div>
</CardContent>
</Card>
)}
{currentStep === 2 && (
<Card>
<CardHeader>
<CardTitle>Project Details</CardTitle>
<CardDescription>
Tell us more about your vision and requirements
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="space-y-2">
<Label htmlFor="projectDetails">Project Description</Label>
<Textarea
id="projectDetails"
placeholder="Describe your project, goals, and any specific requirements..."
value={formData.projectDetails}
onChange={(e) => updateFormData("projectDetails", e.target.value)}
rows={8}
className="resize-none"
/>
<p className="text-xs text-muted-foreground">
Include as much detail as possible about your creative vision and technical requirements.
</p>
</div>
</CardContent>
</Card>
)}
{currentStep === 3 && (
<Card>
<CardHeader>
<CardTitle>Contact Information</CardTitle>
<CardDescription>
How can we reach you?
</CardDescription>
</CardHeader>
<CardContent className="space-y-4">
<div className="grid gap-4 sm:grid-cols-2">
<div className="space-y-2">
<Label htmlFor="name">Full Name *</Label>
<Input
id="name"
placeholder="John Doe"
value={formData.name}
onChange={(e) => updateFormData("name", e.target.value)}
required
/>
</div>
<div className="space-y-2">
<Label htmlFor="company">Company</Label>
<Input
id="company"
placeholder="Company Name"
value={formData.company}
onChange={(e) => updateFormData("company", e.target.value)}
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="email">Email Address *</Label>
<Input
id="email"
type="email"
placeholder="john@example.com"
value={formData.email}
onChange={(e) => updateFormData("email", e.target.value)}
required
/>
</div>
<div className="space-y-2">
<Label htmlFor="phone">Phone Number</Label>
<Input
id="phone"
type="tel"
placeholder="+1 (555) 000-0000"
value={formData.phone}
onChange={(e) => updateFormData("phone", e.target.value)}
/>
</div>
</CardContent>
</Card>
)}
{currentStep === 4 && (
<Card>
<CardHeader>
<CardTitle>Review & Submit</CardTitle>
<CardDescription>
Please review your information before submitting
</CardDescription>
</CardHeader>
<CardContent className="space-y-6">
<div className="space-y-4">
<div>
<h4 className="text-sm font-semibold">Project Details</h4>
<dl className="mt-2 space-y-1 text-sm">
<div className="flex justify-between">
<dt className="text-muted-foreground">Project Type:</dt>
<dd className="font-medium">{formData.projectType || "Not specified"}</dd>
</div>
<div className="flex justify-between">
<dt className="text-muted-foreground">Budget:</dt>
<dd className="font-medium">{formData.budget || "Not specified"}</dd>
</div>
<div className="flex justify-between">
<dt className="text-muted-foreground">Timeline:</dt>
<dd className="font-medium">{formData.timeline || "Not specified"}</dd>
</div>
</dl>
</div>
{formData.projectDetails && (
<div>
<h4 className="text-sm font-semibold">Description</h4>
<p className="mt-2 text-sm text-muted-foreground">
{formData.projectDetails}
</p>
</div>
)}
<div>
<h4 className="text-sm font-semibold">Contact Information</h4>
<dl className="mt-2 space-y-1 text-sm">
<div className="flex justify-between">
<dt className="text-muted-foreground">Name:</dt>
<dd className="font-medium">{formData.name}</dd>
</div>
{formData.company && (
<div className="flex justify-between">
<dt className="text-muted-foreground">Company:</dt>
<dd className="font-medium">{formData.company}</dd>
</div>
)}
<div className="flex justify-between">
<dt className="text-muted-foreground">Email:</dt>
<dd className="font-medium">{formData.email}</dd>
</div>
{formData.phone && (
<div className="flex justify-between">
<dt className="text-muted-foreground">Phone:</dt>
<dd className="font-medium">{formData.phone}</dd>
</div>
)}
</dl>
</div>
</div>
</CardContent>
</Card>
)}
<div className="flex justify-between pt-6">
<Button
type="button"
variant="outline"
onClick={prevStep}
disabled={currentStep === 1}
>
<ArrowLeft className="mr-2 h-4 w-4" />
Previous
</Button>
{currentStep < totalSteps ? (
<Button type="button" onClick={nextStep}>
Next
<ArrowRight className="ml-2 h-4 w-4" />
</Button>
) : (
<Button type="submit">
Submit
<Check className="ml-2 h-4 w-4" />
</Button>
)}
</div>
</form>
</div>
);
}

View File

@ -0,0 +1,48 @@
"use client";
import Link from "next/link";
import { usePathname } from "next/navigation";
import {
NavigationMenu,
NavigationMenuItem,
NavigationMenuLink,
NavigationMenuList,
navigationMenuTriggerStyle,
} from "@/components/ui/navigation-menu";
export function Navigation() {
const pathname = usePathname();
const navItems = [
{ href: "/", label: "Home" },
{ href: "/about", label: "About" },
{ href: "/services", label: "Services" },
{ href: "/portfolio", label: "Portfolio" },
{ href: "/contact", label: "Contact" },
];
return (
<header className="sticky top-0 z-50 w-full border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
<div className="container flex h-16 items-center justify-between">
<Link href="/" className="flex items-center space-x-2">
<span className="text-2xl font-bold">Biohazard VFX</span>
</Link>
<NavigationMenu>
<NavigationMenuList>
{navItems.map((item) => (
<NavigationMenuItem key={item.href}>
<NavigationMenuLink asChild active={pathname === item.href}>
<Link href={item.href} className={navigationMenuTriggerStyle()}>
{item.label}
</Link>
</NavigationMenuLink>
</NavigationMenuItem>
))}
</NavigationMenuList>
</NavigationMenu>
</div>
</header>
);
}

View File

@ -0,0 +1,88 @@
"use client";
import { useState } from "react";
import Image from "next/image";
import {
Card,
CardContent,
CardDescription,
CardHeader,
CardTitle,
} from "@/components/ui/card";
import { Badge } from "@/components/ui/badge";
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogTrigger,
} from "@/components/ui/dialog";
import { Play } from "lucide-react";
import type { Project } from "@/data/projects";
interface ProjectCardProps {
project: Project;
}
export function ProjectCard({ project }: ProjectCardProps) {
const [isOpen, setIsOpen] = useState(false);
return (
<Dialog open={isOpen} onOpenChange={setIsOpen}>
<DialogTrigger asChild>
<Card className="group cursor-pointer overflow-hidden transition-all hover:shadow-lg">
<div className="relative overflow-hidden">
<Image
src={project.thumbnailUrl}
alt={project.title}
width={800}
height={800 / project.aspectRatio}
className="h-full w-full object-cover transition-transform duration-300 group-hover:scale-105"
loading="lazy"
/>
{project.videoUrl && (
<div className="absolute inset-0 flex items-center justify-center bg-black/0 transition-all group-hover:bg-black/40">
<Play className="h-12 w-12 text-white opacity-0 transition-opacity group-hover:opacity-100" />
</div>
)}
</div>
<CardHeader>
<div className="flex items-start justify-between gap-2">
<CardTitle className="line-clamp-1">{project.title}</CardTitle>
<Badge variant="secondary">{project.category}</Badge>
</div>
<CardDescription className="line-clamp-2">
{project.description}
</CardDescription>
</CardHeader>
<CardContent>
<div className="flex flex-wrap gap-2">
{project.tags.map((tag) => (
<Badge key={tag} variant="outline">
{tag}
</Badge>
))}
</div>
</CardContent>
</Card>
</DialogTrigger>
{project.videoUrl && (
<DialogContent className="max-w-5xl p-0">
<DialogHeader className="sr-only">
<DialogTitle>{project.title}</DialogTitle>
</DialogHeader>
<div className="aspect-video w-full">
<iframe
src={project.videoUrl}
title={project.title}
className="h-full w-full"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
/>
</div>
</DialogContent>
)}
</Dialog>
);
}

View File

@ -0,0 +1,42 @@
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
import { Badge } from "@/components/ui/badge";
import * as LucideIcons from "lucide-react";
import type { Service } from "@/data/services";
interface ServiceCardProps {
service: Service;
}
export function ServiceCard({ service }: ServiceCardProps) {
// Dynamically get the icon component
const IconComponent = (LucideIcons as any)[service.icon] || LucideIcons.Box;
return (
<Card className="h-full transition-shadow hover:shadow-lg">
<CardHeader>
<div className="flex items-center gap-3">
<div className="rounded-lg bg-primary/10 p-2">
<IconComponent className="h-6 w-6" />
</div>
<CardTitle>{service.title}</CardTitle>
</div>
<CardDescription>{service.description}</CardDescription>
</CardHeader>
<CardContent>
<div className="space-y-2">
<p className="text-sm font-semibold">Key Features:</p>
<ul className="space-y-1">
{service.features.map((feature, index) => (
<li key={index} className="flex items-center gap-2 text-sm text-muted-foreground">
<Badge variant="outline" className="px-2 py-0">
{feature}
</Badge>
</li>
))}
</ul>
</div>
</CardContent>
</Card>
);
}

View File

@ -0,0 +1,70 @@
"use client";
import { useState } from "react";
import {
Dialog,
DialogContent,
DialogHeader,
DialogTitle,
DialogTrigger,
} from "@/components/ui/dialog";
import { Button } from "@/components/ui/button";
import { Play } from "lucide-react";
import Image from "next/image";
interface VideoPlayerProps {
videoUrl: string;
thumbnailUrl: string;
title: string;
className?: string;
}
export function VideoPlayer({
videoUrl,
thumbnailUrl,
title,
className = "",
}: VideoPlayerProps) {
const [isOpen, setIsOpen] = useState(false);
return (
<Dialog open={isOpen} onOpenChange={setIsOpen}>
<DialogTrigger asChild>
<div className={`group relative cursor-pointer overflow-hidden rounded-lg ${className}`}>
<Image
src={thumbnailUrl}
alt={title}
width={1600}
height={900}
className="h-full w-full object-cover transition-transform duration-300 group-hover:scale-105"
loading="lazy"
/>
<div className="absolute inset-0 flex items-center justify-center bg-black/40 transition-opacity group-hover:bg-black/50">
<Button
size="lg"
className="h-16 w-16 rounded-full"
variant="secondary"
>
<Play className="h-8 w-8 fill-current" />
</Button>
</div>
</div>
</DialogTrigger>
<DialogContent className="max-w-5xl p-0">
<DialogHeader className="sr-only">
<DialogTitle>{title}</DialogTitle>
</DialogHeader>
<div className="aspect-video w-full">
<iframe
src={videoUrl}
title={title}
className="h-full w-full"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
/>
</div>
</DialogContent>
</Dialog>
);
}

View File

@ -0,0 +1,36 @@
import * as React from "react"
import { cva, type VariantProps } from "class-variance-authority"
import { cn } from "@/lib/utils"
const badgeVariants = cva(
"inline-flex items-center rounded-md border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
{
variants: {
variant: {
default:
"border-transparent bg-primary text-primary-foreground shadow hover:bg-primary/80",
secondary:
"border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80",
destructive:
"border-transparent bg-destructive text-destructive-foreground shadow hover:bg-destructive/80",
outline: "text-foreground",
},
},
defaultVariants: {
variant: "default",
},
}
)
export interface BadgeProps
extends React.HTMLAttributes<HTMLDivElement>,
VariantProps<typeof badgeVariants> {}
function Badge({ className, variant, ...props }: BadgeProps) {
return (
<div className={cn(badgeVariants({ variant }), className)} {...props} />
)
}
export { Badge, badgeVariants }

View File

@ -0,0 +1,57 @@
import * as React from "react"
import { Slot } from "@radix-ui/react-slot"
import { cva, type VariantProps } from "class-variance-authority"
import { cn } from "@/lib/utils"
const buttonVariants = cva(
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
{
variants: {
variant: {
default:
"bg-primary text-primary-foreground shadow hover:bg-primary/90",
destructive:
"bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",
outline:
"border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",
secondary:
"bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",
ghost: "hover:bg-accent hover:text-accent-foreground",
link: "text-primary underline-offset-4 hover:underline",
},
size: {
default: "h-9 px-4 py-2",
sm: "h-8 rounded-md px-3 text-xs",
lg: "h-10 rounded-md px-8",
icon: "h-9 w-9",
},
},
defaultVariants: {
variant: "default",
size: "default",
},
}
)
export interface ButtonProps
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
VariantProps<typeof buttonVariants> {
asChild?: boolean
}
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
({ className, variant, size, asChild = false, ...props }, ref) => {
const Comp = asChild ? Slot : "button"
return (
<Comp
className={cn(buttonVariants({ variant, size, className }))}
ref={ref}
{...props}
/>
)
}
)
Button.displayName = "Button"
export { Button, buttonVariants }

View File

@ -0,0 +1,76 @@
import * as React from "react"
import { cn } from "@/lib/utils"
const Card = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn(
"rounded-xl border bg-card text-card-foreground shadow",
className
)}
{...props}
/>
))
Card.displayName = "Card"
const CardHeader = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn("flex flex-col space-y-1.5 p-6", className)}
{...props}
/>
))
CardHeader.displayName = "CardHeader"
const CardTitle = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn("font-semibold leading-none tracking-tight", className)}
{...props}
/>
))
CardTitle.displayName = "CardTitle"
const CardDescription = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn("text-sm text-muted-foreground", className)}
{...props}
/>
))
CardDescription.displayName = "CardDescription"
const CardContent = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div ref={ref} className={cn("p-6 pt-0", className)} {...props} />
))
CardContent.displayName = "CardContent"
const CardFooter = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => (
<div
ref={ref}
className={cn("flex items-center p-6 pt-0", className)}
{...props}
/>
))
CardFooter.displayName = "CardFooter"
export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent }

View File

@ -0,0 +1,122 @@
"use client"
import * as React from "react"
import * as DialogPrimitive from "@radix-ui/react-dialog"
import { X } from "lucide-react"
import { cn } from "@/lib/utils"
const Dialog = DialogPrimitive.Root
const DialogTrigger = DialogPrimitive.Trigger
const DialogPortal = DialogPrimitive.Portal
const DialogClose = DialogPrimitive.Close
const DialogOverlay = React.forwardRef<
React.ElementRef<typeof DialogPrimitive.Overlay>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>
>(({ className, ...props }, ref) => (
<DialogPrimitive.Overlay
ref={ref}
className={cn(
"fixed inset-0 z-50 bg-black/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
className
)}
{...props}
/>
))
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName
const DialogContent = React.forwardRef<
React.ElementRef<typeof DialogPrimitive.Content>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>
>(({ className, children, ...props }, ref) => (
<DialogPortal>
<DialogOverlay />
<DialogPrimitive.Content
ref={ref}
className={cn(
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
className
)}
{...props}
>
{children}
<DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground">
<X className="h-4 w-4" />
<span className="sr-only">Close</span>
</DialogPrimitive.Close>
</DialogPrimitive.Content>
</DialogPortal>
))
DialogContent.displayName = DialogPrimitive.Content.displayName
const DialogHeader = ({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) => (
<div
className={cn(
"flex flex-col space-y-1.5 text-center sm:text-left",
className
)}
{...props}
/>
)
DialogHeader.displayName = "DialogHeader"
const DialogFooter = ({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) => (
<div
className={cn(
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
className
)}
{...props}
/>
)
DialogFooter.displayName = "DialogFooter"
const DialogTitle = React.forwardRef<
React.ElementRef<typeof DialogPrimitive.Title>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title>
>(({ className, ...props }, ref) => (
<DialogPrimitive.Title
ref={ref}
className={cn(
"text-lg font-semibold leading-none tracking-tight",
className
)}
{...props}
/>
))
DialogTitle.displayName = DialogPrimitive.Title.displayName
const DialogDescription = React.forwardRef<
React.ElementRef<typeof DialogPrimitive.Description>,
React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description>
>(({ className, ...props }, ref) => (
<DialogPrimitive.Description
ref={ref}
className={cn("text-sm text-muted-foreground", className)}
{...props}
/>
))
DialogDescription.displayName = DialogPrimitive.Description.displayName
export {
Dialog,
DialogPortal,
DialogOverlay,
DialogTrigger,
DialogClose,
DialogContent,
DialogHeader,
DialogFooter,
DialogTitle,
DialogDescription,
}

178
src/components/ui/form.tsx Normal file
View File

@ -0,0 +1,178 @@
"use client"
import * as React from "react"
import * as LabelPrimitive from "@radix-ui/react-label"
import { Slot } from "@radix-ui/react-slot"
import {
Controller,
FormProvider,
useFormContext,
type ControllerProps,
type FieldPath,
type FieldValues,
} from "react-hook-form"
import { cn } from "@/lib/utils"
import { Label } from "@/components/ui/label"
const Form = FormProvider
type FormFieldContextValue<
TFieldValues extends FieldValues = FieldValues,
TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>
> = {
name: TName
}
const FormFieldContext = React.createContext<FormFieldContextValue>(
{} as FormFieldContextValue
)
const FormField = <
TFieldValues extends FieldValues = FieldValues,
TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>
>({
...props
}: ControllerProps<TFieldValues, TName>) => {
return (
<FormFieldContext.Provider value={{ name: props.name }}>
<Controller {...props} />
</FormFieldContext.Provider>
)
}
const useFormField = () => {
const fieldContext = React.useContext(FormFieldContext)
const itemContext = React.useContext(FormItemContext)
const { getFieldState, formState } = useFormContext()
const fieldState = getFieldState(fieldContext.name, formState)
if (!fieldContext) {
throw new Error("useFormField should be used within <FormField>")
}
const { id } = itemContext
return {
id,
name: fieldContext.name,
formItemId: `${id}-form-item`,
formDescriptionId: `${id}-form-item-description`,
formMessageId: `${id}-form-item-message`,
...fieldState,
}
}
type FormItemContextValue = {
id: string
}
const FormItemContext = React.createContext<FormItemContextValue>(
{} as FormItemContextValue
)
const FormItem = React.forwardRef<
HTMLDivElement,
React.HTMLAttributes<HTMLDivElement>
>(({ className, ...props }, ref) => {
const id = React.useId()
return (
<FormItemContext.Provider value={{ id }}>
<div ref={ref} className={cn("space-y-2", className)} {...props} />
</FormItemContext.Provider>
)
})
FormItem.displayName = "FormItem"
const FormLabel = React.forwardRef<
React.ElementRef<typeof LabelPrimitive.Root>,
React.ComponentPropsWithoutRef<typeof LabelPrimitive.Root>
>(({ className, ...props }, ref) => {
const { error, formItemId } = useFormField()
return (
<Label
ref={ref}
className={cn(error && "text-destructive", className)}
htmlFor={formItemId}
{...props}
/>
)
})
FormLabel.displayName = "FormLabel"
const FormControl = React.forwardRef<
React.ElementRef<typeof Slot>,
React.ComponentPropsWithoutRef<typeof Slot>
>(({ ...props }, ref) => {
const { error, formItemId, formDescriptionId, formMessageId } = useFormField()
return (
<Slot
ref={ref}
id={formItemId}
aria-describedby={
!error
? `${formDescriptionId}`
: `${formDescriptionId} ${formMessageId}`
}
aria-invalid={!!error}
{...props}
/>
)
})
FormControl.displayName = "FormControl"
const FormDescription = React.forwardRef<
HTMLParagraphElement,
React.HTMLAttributes<HTMLParagraphElement>
>(({ className, ...props }, ref) => {
const { formDescriptionId } = useFormField()
return (
<p
ref={ref}
id={formDescriptionId}
className={cn("text-[0.8rem] text-muted-foreground", className)}
{...props}
/>
)
})
FormDescription.displayName = "FormDescription"
const FormMessage = React.forwardRef<
HTMLParagraphElement,
React.HTMLAttributes<HTMLParagraphElement>
>(({ className, children, ...props }, ref) => {
const { error, formMessageId } = useFormField()
const body = error ? String(error?.message ?? "") : children
if (!body) {
return null
}
return (
<p
ref={ref}
id={formMessageId}
className={cn("text-[0.8rem] font-medium text-destructive", className)}
{...props}
>
{body}
</p>
)
})
FormMessage.displayName = "FormMessage"
export {
useFormField,
Form,
FormItem,
FormLabel,
FormControl,
FormDescription,
FormMessage,
FormField,
}

View File

@ -0,0 +1,22 @@
import * as React from "react"
import { cn } from "@/lib/utils"
const Input = React.forwardRef<HTMLInputElement, React.ComponentProps<"input">>(
({ className, type, ...props }, ref) => {
return (
<input
type={type}
className={cn(
"flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
className
)}
ref={ref}
{...props}
/>
)
}
)
Input.displayName = "Input"
export { Input }

View File

@ -0,0 +1,24 @@
"use client"
import * as React from "react"
import * as LabelPrimitive from "@radix-ui/react-label"
import { cn } from "@/lib/utils"
function Label({
className,
...props
}: React.ComponentProps<typeof LabelPrimitive.Root>) {
return (
<LabelPrimitive.Root
data-slot="label"
className={cn(
"flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50",
className
)}
{...props}
/>
)
}
export { Label }

View File

@ -0,0 +1,128 @@
import * as React from "react"
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu"
import { cva } from "class-variance-authority"
import { ChevronDown } from "lucide-react"
import { cn } from "@/lib/utils"
const NavigationMenu = React.forwardRef<
React.ElementRef<typeof NavigationMenuPrimitive.Root>,
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Root>
>(({ className, children, ...props }, ref) => (
<NavigationMenuPrimitive.Root
ref={ref}
className={cn(
"relative z-10 flex max-w-max flex-1 items-center justify-center",
className
)}
{...props}
>
{children}
<NavigationMenuViewport />
</NavigationMenuPrimitive.Root>
))
NavigationMenu.displayName = NavigationMenuPrimitive.Root.displayName
const NavigationMenuList = React.forwardRef<
React.ElementRef<typeof NavigationMenuPrimitive.List>,
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.List>
>(({ className, ...props }, ref) => (
<NavigationMenuPrimitive.List
ref={ref}
className={cn(
"group flex flex-1 list-none items-center justify-center space-x-1",
className
)}
{...props}
/>
))
NavigationMenuList.displayName = NavigationMenuPrimitive.List.displayName
const NavigationMenuItem = NavigationMenuPrimitive.Item
const navigationMenuTriggerStyle = cva(
"group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[state=open]:text-accent-foreground data-[state=open]:bg-accent/50 data-[state=open]:hover:bg-accent data-[state=open]:focus:bg-accent"
)
const NavigationMenuTrigger = React.forwardRef<
React.ElementRef<typeof NavigationMenuPrimitive.Trigger>,
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Trigger>
>(({ className, children, ...props }, ref) => (
<NavigationMenuPrimitive.Trigger
ref={ref}
className={cn(navigationMenuTriggerStyle(), "group", className)}
{...props}
>
{children}{" "}
<ChevronDown
className="relative top-[1px] ml-1 h-3 w-3 transition duration-300 group-data-[state=open]:rotate-180"
aria-hidden="true"
/>
</NavigationMenuPrimitive.Trigger>
))
NavigationMenuTrigger.displayName = NavigationMenuPrimitive.Trigger.displayName
const NavigationMenuContent = React.forwardRef<
React.ElementRef<typeof NavigationMenuPrimitive.Content>,
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Content>
>(({ className, ...props }, ref) => (
<NavigationMenuPrimitive.Content
ref={ref}
className={cn(
"left-0 top-0 w-full data-[motion^=from-]:animate-in data-[motion^=to-]:animate-out data-[motion^=from-]:fade-in data-[motion^=to-]:fade-out data-[motion=from-end]:slide-in-from-right-52 data-[motion=from-start]:slide-in-from-left-52 data-[motion=to-end]:slide-out-to-right-52 data-[motion=to-start]:slide-out-to-left-52 md:absolute md:w-auto ",
className
)}
{...props}
/>
))
NavigationMenuContent.displayName = NavigationMenuPrimitive.Content.displayName
const NavigationMenuLink = NavigationMenuPrimitive.Link
const NavigationMenuViewport = React.forwardRef<
React.ElementRef<typeof NavigationMenuPrimitive.Viewport>,
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Viewport>
>(({ className, ...props }, ref) => (
<div className={cn("absolute left-0 top-full flex justify-center")}>
<NavigationMenuPrimitive.Viewport
className={cn(
"origin-top-center relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border bg-popover text-popover-foreground shadow data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 md:w-[var(--radix-navigation-menu-viewport-width)]",
className
)}
ref={ref}
{...props}
/>
</div>
))
NavigationMenuViewport.displayName =
NavigationMenuPrimitive.Viewport.displayName
const NavigationMenuIndicator = React.forwardRef<
React.ElementRef<typeof NavigationMenuPrimitive.Indicator>,
React.ComponentPropsWithoutRef<typeof NavigationMenuPrimitive.Indicator>
>(({ className, ...props }, ref) => (
<NavigationMenuPrimitive.Indicator
ref={ref}
className={cn(
"top-full z-[1] flex h-1.5 items-end justify-center overflow-hidden data-[state=visible]:animate-in data-[state=hidden]:animate-out data-[state=hidden]:fade-out data-[state=visible]:fade-in",
className
)}
{...props}
>
<div className="relative top-[60%] h-2 w-2 rotate-45 rounded-tl-sm bg-border shadow-md" />
</NavigationMenuPrimitive.Indicator>
))
NavigationMenuIndicator.displayName =
NavigationMenuPrimitive.Indicator.displayName
export {
navigationMenuTriggerStyle,
NavigationMenu,
NavigationMenuList,
NavigationMenuItem,
NavigationMenuContent,
NavigationMenuTrigger,
NavigationMenuLink,
NavigationMenuIndicator,
NavigationMenuViewport,
}

View File

@ -0,0 +1,28 @@
"use client"
import * as React from "react"
import * as ProgressPrimitive from "@radix-ui/react-progress"
import { cn } from "@/lib/utils"
const Progress = React.forwardRef<
React.ElementRef<typeof ProgressPrimitive.Root>,
React.ComponentPropsWithoutRef<typeof ProgressPrimitive.Root>
>(({ className, value, ...props }, ref) => (
<ProgressPrimitive.Root
ref={ref}
className={cn(
"relative h-2 w-full overflow-hidden rounded-full bg-primary/20",
className
)}
{...props}
>
<ProgressPrimitive.Indicator
className="h-full w-full flex-1 bg-primary transition-all"
style={{ transform: `translateX(-${100 - (value || 0)}%)` }}
/>
</ProgressPrimitive.Root>
))
Progress.displayName = ProgressPrimitive.Root.displayName
export { Progress }

View File

@ -0,0 +1,159 @@
"use client"
import * as React from "react"
import * as SelectPrimitive from "@radix-ui/react-select"
import { Check, ChevronDown, ChevronUp } from "lucide-react"
import { cn } from "@/lib/utils"
const Select = SelectPrimitive.Root
const SelectGroup = SelectPrimitive.Group
const SelectValue = SelectPrimitive.Value
const SelectTrigger = React.forwardRef<
React.ElementRef<typeof SelectPrimitive.Trigger>,
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger>
>(({ className, children, ...props }, ref) => (
<SelectPrimitive.Trigger
ref={ref}
className={cn(
"flex h-9 w-full items-center justify-between whitespace-nowrap rounded-md border border-input bg-transparent px-3 py-2 text-sm shadow-sm ring-offset-background data-[placeholder]:text-muted-foreground focus:outline-none focus:ring-1 focus:ring-ring disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1",
className
)}
{...props}
>
{children}
<SelectPrimitive.Icon asChild>
<ChevronDown className="h-4 w-4 opacity-50" />
</SelectPrimitive.Icon>
</SelectPrimitive.Trigger>
))
SelectTrigger.displayName = SelectPrimitive.Trigger.displayName
const SelectScrollUpButton = React.forwardRef<
React.ElementRef<typeof SelectPrimitive.ScrollUpButton>,
React.ComponentPropsWithoutRef<typeof SelectPrimitive.ScrollUpButton>
>(({ className, ...props }, ref) => (
<SelectPrimitive.ScrollUpButton
ref={ref}
className={cn(
"flex cursor-default items-center justify-center py-1",
className
)}
{...props}
>
<ChevronUp className="h-4 w-4" />
</SelectPrimitive.ScrollUpButton>
))
SelectScrollUpButton.displayName = SelectPrimitive.ScrollUpButton.displayName
const SelectScrollDownButton = React.forwardRef<
React.ElementRef<typeof SelectPrimitive.ScrollDownButton>,
React.ComponentPropsWithoutRef<typeof SelectPrimitive.ScrollDownButton>
>(({ className, ...props }, ref) => (
<SelectPrimitive.ScrollDownButton
ref={ref}
className={cn(
"flex cursor-default items-center justify-center py-1",
className
)}
{...props}
>
<ChevronDown className="h-4 w-4" />
</SelectPrimitive.ScrollDownButton>
))
SelectScrollDownButton.displayName =
SelectPrimitive.ScrollDownButton.displayName
const SelectContent = React.forwardRef<
React.ElementRef<typeof SelectPrimitive.Content>,
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Content>
>(({ className, children, position = "popper", ...props }, ref) => (
<SelectPrimitive.Portal>
<SelectPrimitive.Content
ref={ref}
className={cn(
"relative z-50 max-h-[--radix-select-content-available-height] min-w-[8rem] overflow-y-auto overflow-x-hidden rounded-md border bg-popover text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-[--radix-select-content-transform-origin]",
position === "popper" &&
"data-[side=bottom]:translate-y-1 data-[side=left]:-translate-x-1 data-[side=right]:translate-x-1 data-[side=top]:-translate-y-1",
className
)}
position={position}
{...props}
>
<SelectScrollUpButton />
<SelectPrimitive.Viewport
className={cn(
"p-1",
position === "popper" &&
"h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)]"
)}
>
{children}
</SelectPrimitive.Viewport>
<SelectScrollDownButton />
</SelectPrimitive.Content>
</SelectPrimitive.Portal>
))
SelectContent.displayName = SelectPrimitive.Content.displayName
const SelectLabel = React.forwardRef<
React.ElementRef<typeof SelectPrimitive.Label>,
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Label>
>(({ className, ...props }, ref) => (
<SelectPrimitive.Label
ref={ref}
className={cn("px-2 py-1.5 text-sm font-semibold", className)}
{...props}
/>
))
SelectLabel.displayName = SelectPrimitive.Label.displayName
const SelectItem = React.forwardRef<
React.ElementRef<typeof SelectPrimitive.Item>,
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Item>
>(({ className, children, ...props }, ref) => (
<SelectPrimitive.Item
ref={ref}
className={cn(
"relative flex w-full cursor-default select-none items-center rounded-sm py-1.5 pl-2 pr-8 text-sm outline-none focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
className
)}
{...props}
>
<span className="absolute right-2 flex h-3.5 w-3.5 items-center justify-center">
<SelectPrimitive.ItemIndicator>
<Check className="h-4 w-4" />
</SelectPrimitive.ItemIndicator>
</span>
<SelectPrimitive.ItemText>{children}</SelectPrimitive.ItemText>
</SelectPrimitive.Item>
))
SelectItem.displayName = SelectPrimitive.Item.displayName
const SelectSeparator = React.forwardRef<
React.ElementRef<typeof SelectPrimitive.Separator>,
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Separator>
>(({ className, ...props }, ref) => (
<SelectPrimitive.Separator
ref={ref}
className={cn("-mx-1 my-1 h-px bg-muted", className)}
{...props}
/>
))
SelectSeparator.displayName = SelectPrimitive.Separator.displayName
export {
Select,
SelectGroup,
SelectValue,
SelectTrigger,
SelectContent,
SelectLabel,
SelectItem,
SelectSeparator,
SelectScrollUpButton,
SelectScrollDownButton,
}

View File

@ -0,0 +1,31 @@
"use client"
import * as React from "react"
import * as SeparatorPrimitive from "@radix-ui/react-separator"
import { cn } from "@/lib/utils"
const Separator = React.forwardRef<
React.ElementRef<typeof SeparatorPrimitive.Root>,
React.ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root>
>(
(
{ className, orientation = "horizontal", decorative = true, ...props },
ref
) => (
<SeparatorPrimitive.Root
ref={ref}
decorative={decorative}
orientation={orientation}
className={cn(
"shrink-0 bg-border",
orientation === "horizontal" ? "h-[1px] w-full" : "h-full w-[1px]",
className
)}
{...props}
/>
)
)
Separator.displayName = SeparatorPrimitive.Root.displayName
export { Separator }

View File

@ -0,0 +1,22 @@
import * as React from "react"
import { cn } from "@/lib/utils"
const Textarea = React.forwardRef<
HTMLTextAreaElement,
React.ComponentProps<"textarea">
>(({ className, ...props }, ref) => {
return (
<textarea
className={cn(
"flex min-h-[60px] w-full rounded-md border border-input bg-transparent px-3 py-2 text-base shadow-sm placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
className
)}
ref={ref}
{...props}
/>
)
})
Textarea.displayName = "Textarea"
export { Textarea }

87
src/data/projects.ts Normal file
View File

@ -0,0 +1,87 @@
export interface Project {
id: string;
title: string;
description: string;
category: string;
thumbnailUrl: string;
videoUrl?: string;
aspectRatio: number; // width/height for masonry layout
featured: boolean;
tags: string[];
}
export const projects: Project[] = [
{
id: "1",
title: "Cinematic VFX Breakdown",
description: "High-end visual effects for feature film production",
category: "Film",
thumbnailUrl: "https://images.unsplash.com/photo-1536440136628-849c177e76a1?w=800&q=80",
videoUrl: "https://www.youtube.com/embed/dQw4w9WgXcQ",
aspectRatio: 16 / 9,
featured: true,
tags: ["VFX", "Film", "CGI"],
},
{
id: "2",
title: "Commercial Product Spot",
description: "Stunning product visualization and motion graphics",
category: "Commercial",
thumbnailUrl: "https://images.unsplash.com/photo-1492691527719-9d1e07e534b4?w=800&q=80",
videoUrl: "https://www.youtube.com/embed/dQw4w9WgXcQ",
aspectRatio: 1,
featured: true,
tags: ["Commercial", "Motion Graphics"],
},
{
id: "3",
title: "Music Video Effects",
description: "Creative visual effects for music production",
category: "Music Video",
thumbnailUrl: "https://images.unsplash.com/photo-1511379938547-c1f69419868d?w=800&q=80",
videoUrl: "https://www.youtube.com/embed/dQw4w9WgXcQ",
aspectRatio: 9 / 16,
featured: true,
tags: ["Music Video", "Creative"],
},
{
id: "4",
title: "Sci-Fi Environment Design",
description: "Futuristic world building and environment creation",
category: "Film",
thumbnailUrl: "https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=800&q=80",
videoUrl: "https://www.youtube.com/embed/dQw4w9WgXcQ",
aspectRatio: 21 / 9,
featured: false,
tags: ["VFX", "Environment", "3D"],
},
{
id: "5",
title: "Character Animation Reel",
description: "Realistic character animation and facial capture",
category: "Animation",
thumbnailUrl: "https://images.unsplash.com/photo-1550745165-9bc0b252726f?w=800&q=80",
videoUrl: "https://www.youtube.com/embed/dQw4w9WgXcQ",
aspectRatio: 16 / 9,
featured: false,
tags: ["Animation", "Character", "Motion Capture"],
},
{
id: "6",
title: "Destruction Simulation",
description: "Physics-based destruction and particle effects",
category: "VFX",
thumbnailUrl: "https://images.unsplash.com/photo-1518770660439-4636190af475?w=800&q=80",
videoUrl: "https://www.youtube.com/embed/dQw4w9WgXcQ",
aspectRatio: 4 / 3,
featured: false,
tags: ["VFX", "Simulation", "Particles"],
},
];
export const studioReel = {
title: "Biohazard VFX Studio Reel 2025",
videoUrl: "https://www.youtube.com/embed/dQw4w9WgXcQ",
thumbnailUrl: "https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?w=1600&q=80",
};

83
src/data/services.ts Normal file
View File

@ -0,0 +1,83 @@
export interface Service {
id: string;
title: string;
description: string;
icon: string;
features: string[];
}
export const services: Service[] = [
{
id: "vfx",
title: "Visual Effects",
description: "High-end VFX for film, television, and digital media. From subtle enhancements to full CGI environments.",
icon: "Sparkles",
features: [
"CGI Integration",
"Environment Creation",
"Matte Painting",
"Compositing",
],
},
{
id: "motion-graphics",
title: "Motion Graphics",
description: "Eye-catching motion design for commercials, title sequences, and promotional content.",
icon: "Move",
features: [
"2D/3D Animation",
"Title Design",
"Logo Animation",
"Broadcast Graphics",
],
},
{
id: "compositing",
title: "Compositing",
description: "Seamless integration of multiple elements into cohesive final shots with professional-grade compositing.",
icon: "Layers",
features: [
"Green Screen",
"Color Grading",
"Clean-up & Rotoscoping",
"Digital Set Extensions",
],
},
{
id: "animation",
title: "3D Animation",
description: "Character animation, product visualization, and 3D motion graphics for any medium.",
icon: "Box",
features: [
"Character Rigging",
"Product Visualization",
"Architectural Visualization",
"Motion Capture",
],
},
{
id: "simulation",
title: "Simulation & FX",
description: "Physics-based simulations including destruction, fluids, fire, smoke, and particle effects.",
icon: "Zap",
features: [
"Destruction Effects",
"Fluid Simulation",
"Particle Systems",
"Crowd Simulation",
],
},
{
id: "color-grading",
title: "Color Grading",
description: "Professional color correction and grading to achieve the perfect look for your project.",
icon: "Palette",
features: [
"Look Development",
"Color Correction",
"HDR Grading",
"Film Emulation",
],
},
];