85 lines
2.9 KiB
TypeScript
85 lines
2.9 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Sparkles } from "lucide-react";
|
|
import { getTranslations } from "next-intl/server";
|
|
|
|
import { FloatingPreferences } from "@/components/layout/floating-preferences";
|
|
import { MotionFade } from "@/components/motion-fade";
|
|
import { HeroShell, HeroTitle } from "@/components/layout/site-hero";
|
|
import { getSiteSettings } from "@/lib/app-config";
|
|
import { buildLocalizedMetadata } from "@/lib/metadata";
|
|
import { resolveLocale } from "@/lib/locale";
|
|
|
|
type ComingSoonPageProps = {
|
|
params: Promise<{
|
|
locale: string;
|
|
}>;
|
|
};
|
|
|
|
export async function generateMetadata({ params }: ComingSoonPageProps): Promise<Metadata> {
|
|
const { locale } = await params;
|
|
const localeKey = resolveLocale(locale);
|
|
const t = await getTranslations({ locale: localeKey, namespace: "comingSoon" });
|
|
const siteSettings = await getSiteSettings();
|
|
|
|
return await buildLocalizedMetadata({
|
|
locale: localeKey,
|
|
pathname: "/coming-soon",
|
|
title: siteSettings.locales[localeKey].siteName,
|
|
description: t("description"),
|
|
applyTitleTemplate: false,
|
|
});
|
|
}
|
|
|
|
export default async function ComingSoonPage({
|
|
params,
|
|
}: ComingSoonPageProps) {
|
|
const { locale } = await params;
|
|
const localeKey = resolveLocale(locale);
|
|
const t = await getTranslations({ locale: localeKey, namespace: "comingSoon" });
|
|
const isArabic = localeKey === "ar";
|
|
const lines = [
|
|
{
|
|
text: t("titleLineOne"),
|
|
tone: "soft" as const,
|
|
align: isArabic ? "center" as const : "start" as const,
|
|
},
|
|
{
|
|
text: t("titleLineTwo"),
|
|
tone: "default" as const,
|
|
align: isArabic ? "center" as const : "end" as const,
|
|
},
|
|
{
|
|
text: t("titleLineThree"),
|
|
tone: "accent" as const,
|
|
align: isArabic ? "center" as const : "start" as const,
|
|
},
|
|
];
|
|
|
|
return (
|
|
<div className="relative min-h-screen overflow-hidden">
|
|
<FloatingPreferences locale={localeKey} />
|
|
|
|
<HeroShell className="min-h-screen" showBridges>
|
|
<MotionFade className="relative z-10 w-full">
|
|
<div className="mx-auto max-w-[56rem] text-center">
|
|
<p className="inline-flex items-center gap-2 rounded-pill border border-foreground/8 bg-background/55 px-4 py-2 text-sm font-medium tracking-[0.08em] text-[hsl(var(--hero-ink)/0.84)] shadow-[var(--shadow-sm)] backdrop-blur-[18px] dark:border-foreground/10 dark:bg-background/20 dark:text-foreground/84">
|
|
<Sparkles className="h-3.5 w-3.5 text-brand-secondary" />
|
|
{t("kicker")}
|
|
</p>
|
|
|
|
<HeroTitle locale={localeKey} lines={lines} className="mx-auto mt-8" />
|
|
|
|
<p className="mx-auto mt-8 max-w-[34rem] text-sm leading-7 text-foreground/68 sm:text-base">
|
|
{t("description")}
|
|
</p>
|
|
|
|
<p className="mx-auto mt-4 max-w-[32rem] text-sm leading-6 text-foreground/54 sm:text-base">
|
|
{t("note")}
|
|
</p>
|
|
</div>
|
|
</MotionFade>
|
|
</HeroShell>
|
|
</div>
|
|
);
|
|
}
|