95eb362bfc
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>
22 lines
560 B
TypeScript
22 lines
560 B
TypeScript
import type { Metadata } from "next"
|
|
import { HeroSection, FormSection, CardsSection } from "@/components/contact"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Contact",
|
|
description: "Get in touch with the DalCode team. We'd love to hear from you about partnerships, support, or general inquiries.",
|
|
openGraph: {
|
|
title: "Contact DalCode",
|
|
description: "Get in touch with the DalCode team.",
|
|
},
|
|
}
|
|
|
|
export default function ContactPage() {
|
|
return (
|
|
<main>
|
|
<HeroSection />
|
|
<FormSection />
|
|
<CardsSection />
|
|
</main>
|
|
)
|
|
}
|