Files
gitlab-instance-0a899031_salon/app/coming-soon/page.tsx
2026-03-16 01:09:13 -05:00

29 lines
876 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client";
import Link from "next/link";
import Header from "../components/Header";
import Footer from "../components/Footer";
export default function ComingSoonPage() {
return (
<div className="min-h-screen bg-[#faf8f5] dark:bg-stone-950 flex flex-col">
<Header />
<main className="flex-1 flex items-center justify-center px-4">
<div className="text-center">
<p className="text-4xl mb-4"></p>
<h1 className="text-xl font-semibold text-stone-800 dark:text-stone-100 mb-2">
</h1>
<p className="text-sm text-stone-500 dark:text-stone-400 mb-6">
</p>
<Link href="/" className="text-amber-600 dark:text-amber-400 text-sm">
</Link>
</div>
</main>
<Footer />
</div>
);
}