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>
40 lines
1.5 KiB
TypeScript
40 lines
1.5 KiB
TypeScript
import type { Metadata } from "next"
|
|
import Link from "next/link"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Coming Soon",
|
|
description: "This page is coming soon. Stay tuned for updates.",
|
|
}
|
|
|
|
export default function ComingSoonPage() {
|
|
return (
|
|
<main className="section-small top overflow-hidden">
|
|
<div className="w-layout-blockcontainer container-default w-container">
|
|
<div className="text-center" style={{ padding: "120px 0" }}>
|
|
<div className="subtitle">Coming soon</div>
|
|
<div className="mg-top-4x-extra-small">
|
|
<h1>Under construction</h1>
|
|
</div>
|
|
<div className="mg-top-4x-extra-small">
|
|
<p>We're working on something exciting. Check back soon for updates.</p>
|
|
</div>
|
|
<div className="mg-top-24px">
|
|
<Link href="/" className="primary-button w-inline-block">
|
|
<div className="button-content">
|
|
<div>Back to home</div>
|
|
<div className="button-icon-wrapper primary">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="100%" viewBox="0 0 17 17" fill="none" className="squared-icon">
|
|
<path d="M6.25391 3.45312L10.7458 8.01563L6.25391 12.5781" stroke="currentColor" strokeWidth="1.5" strokeLinecap="square" />
|
|
</svg>
|
|
<div className="button-icon-bg" />
|
|
<div className="button-icon-bg-inside" />
|
|
</div>
|
|
</div>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
)
|
|
}
|