feat: initial commit — Webflow to Next.js conversion
QuantumLab template converted to Next.js 16 + React 19 + TypeScript: - 8 page routes (home, about, blog, contact, careers, team-members, coming-soon, 404) - Dynamic routes for blog posts, career positions, and team members - GSAP animations (marquee, counters, button hovers) - IntersectionObserver-based scroll reveal (blur-to-clear transitions) - Dark mode with next-themes - React Hook Form + Zod contact form - Framer Motion page transitions - Lottie animations via lottie-web Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
export interface Career {
|
||||
slug: string
|
||||
title: string
|
||||
department: string
|
||||
location: string
|
||||
type: string
|
||||
description: string
|
||||
}
|
||||
|
||||
export const CAREERS: Career[] = [
|
||||
{
|
||||
slug: "ai-research-scientist",
|
||||
title: "AI Research Scientist",
|
||||
department: "Research",
|
||||
location: "New York, NY",
|
||||
type: "Full time",
|
||||
description: "Lorem ipsum dolor sit amet consectetur ornare dui amet ultrices sed fermentum euismod dictum ut pellentesque aliquet nunc massa sed nisl pretium enim placerat.",
|
||||
},
|
||||
{
|
||||
slug: "machine-learning-engineer",
|
||||
title: "Machine Learning Engineer",
|
||||
department: "Research",
|
||||
location: "Los Angeles, CA",
|
||||
type: "Part time",
|
||||
description: "Lorem ipsum dolor sit amet consectetur ornare dui amet ultrices sed fermentum euismod dictum ut pellentesque aliquet nunc massa sed nisl pretium enim placerat.",
|
||||
},
|
||||
{
|
||||
slug: "ai-infrastructure-engineer",
|
||||
title: "AI Infrastructure Engineer",
|
||||
department: "Engineering",
|
||||
location: "Remote",
|
||||
type: "Part time",
|
||||
description: "Lorem ipsum dolor sit amet consectetur ornare dui amet ultrices sed fermentum euismod dictum ut pellentesque aliquet nunc massa sed nisl pretium enim placerat.",
|
||||
},
|
||||
{
|
||||
slug: "mlops-engineer",
|
||||
title: "MLOps Engineer",
|
||||
department: "Engineering",
|
||||
location: "Remote",
|
||||
type: "Full time",
|
||||
description: "Lorem ipsum dolor sit amet consectetur ornare dui amet ultrices sed fermentum euismod dictum ut pellentesque aliquet nunc massa sed nisl pretium enim placerat.",
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user