Refresh coming soon page with new brand direction
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Sparkles } from "lucide-react";
|
||||
import { ArrowRight, Sparkles } from "lucide-react";
|
||||
import Link from "next/link";
|
||||
import { getTranslations } from "next-intl/server";
|
||||
|
||||
import { AnimatedLogo } from "@/components/layout/animated-logo";
|
||||
import { FloatingPreferences } from "@/components/layout/floating-preferences";
|
||||
import { HeroAtmosphere } from "@/components/layout/hero-atmosphere";
|
||||
import { SiteAmbientBackdrop } from "@/components/layout/site-ambient-backdrop";
|
||||
import { HeroMotionBackdrop } from "@/components/layout/hero-motion-backdrop";
|
||||
import { MotionFade } from "@/components/motion-fade";
|
||||
import { Button } from "@/components/ui/button";
|
||||
import { getSiteSettings } from "@/lib/app-config";
|
||||
import { buildLocalizedMetadata } from "@/lib/metadata";
|
||||
import { resolveLocale } from "@/lib/locale";
|
||||
import { getLocalizedPath, resolveLocale } from "@/lib/locale";
|
||||
|
||||
type ComingSoonPageProps = {
|
||||
params: {
|
||||
@@ -41,36 +41,58 @@ export default async function ComingSoonPage({
|
||||
|
||||
return (
|
||||
<div className="relative min-h-screen overflow-hidden">
|
||||
<SiteAmbientBackdrop />
|
||||
<FloatingPreferences locale={localeKey} />
|
||||
|
||||
<section className="relative isolate flex min-h-screen items-center justify-center overflow-hidden px-4 pb-10 pt-24 sm:px-6 sm:pt-28 lg:px-8">
|
||||
<HeroAtmosphere />
|
||||
<section className="hero-surface hero-home relative isolate flex min-h-screen items-center justify-center overflow-hidden px-4 pb-10 pt-24 sm:px-6 sm:pt-28 lg:px-8">
|
||||
<HeroMotionBackdrop />
|
||||
<div className="hero-header-bridge" />
|
||||
<div className="hero-content-bridge" />
|
||||
|
||||
<MotionFade className="relative z-10 w-full">
|
||||
<div className="mx-auto max-w-[56rem] text-center">
|
||||
<p className="inline-flex items-center gap-2 border border-white/24 bg-[linear-gradient(180deg,rgba(255,255,255,0.2),rgba(255,255,255,0.08))] px-4 py-2 text-xs font-semibold uppercase tracking-[0.18em] text-foreground/78 shadow-[inset_0_1px_0_rgba(255,255,255,0.42),0_18px_44px_-28px_rgba(15,23,42,0.22)] backdrop-blur-[24px] dark:border-white/10 dark:bg-[linear-gradient(180deg,rgba(255,255,255,0.08),rgba(255,255,255,0.03))]">
|
||||
<p className="inline-flex items-center gap-2 rounded-full border border-white/24 bg-[linear-gradient(180deg,rgba(255,255,255,0.2),rgba(255,255,255,0.08))] px-4 py-2 text-xs font-semibold uppercase tracking-[0.18em] text-foreground/78 shadow-[inset_0_1px_0_rgba(255,255,255,0.42),0_18px_44px_-28px_rgba(15,23,42,0.22)] backdrop-blur-[24px] dark:border-white/10 dark:bg-[linear-gradient(180deg,rgba(255,255,255,0.08),rgba(255,255,255,0.03))]">
|
||||
<Sparkles className="h-3.5 w-3.5 text-brand-secondary" />
|
||||
{t("badge")}
|
||||
</p>
|
||||
|
||||
<div className="mt-8">
|
||||
<AnimatedLogo />
|
||||
</div>
|
||||
<p className="mx-auto mt-8 max-w-[20rem] text-base font-medium tracking-[-0.03em] text-[hsl(var(--hero-ink)/0.76)] drop-shadow-[0_10px_24px_rgba(15,23,42,0.16)] sm:text-lg">
|
||||
{t("kicker")}
|
||||
</p>
|
||||
|
||||
<h1 className="text-balance mx-auto mt-10 max-w-4xl text-4xl font-semibold leading-[0.95] tracking-[-0.05em] text-foreground sm:text-5xl lg:text-6xl">
|
||||
{t("titleStart")}{" "}
|
||||
<span className="brand-gradient-text">{t("titleAccent")}</span>{" "}
|
||||
{t("titleEnd")}
|
||||
<h1 className="mx-auto mt-5 flex max-w-[42rem] flex-col gap-y-1 pb-[0.08em] text-[3.15rem] font-semibold leading-[0.94] tracking-[-0.08em] text-[hsl(var(--hero-ink))] drop-shadow-[0_18px_40px_rgba(15,23,42,0.22)] sm:text-[4.8rem] lg:gap-y-2 lg:text-[6rem]">
|
||||
<span className="self-start bg-[linear-gradient(135deg,hsl(var(--hero-ink)),hsl(var(--hero-left)/0.9))] bg-clip-text text-transparent">
|
||||
{t("titleLineOne")}
|
||||
</span>
|
||||
<span className="self-end">{t("titleLineTwo")}</span>
|
||||
<span className="self-start bg-[linear-gradient(135deg,hsl(var(--hero-ink)),hsl(var(--hero-right)/0.85))] bg-clip-text text-transparent">
|
||||
{t("titleLineThree")}
|
||||
</span>
|
||||
</h1>
|
||||
|
||||
<p className="mx-auto mt-6 max-w-[34rem] text-sm leading-7 text-foreground/68 sm:text-base">
|
||||
<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 className="mt-8 flex flex-wrap items-center justify-center gap-3">
|
||||
<Button asChild size="lg" className="min-w-[11rem] px-6">
|
||||
<Link href={getLocalizedPath(localeKey, "/contact")}>
|
||||
{t("primaryCta")}
|
||||
<ArrowRight className="h-4 w-4" />
|
||||
</Link>
|
||||
</Button>
|
||||
<Button
|
||||
asChild
|
||||
variant="outline"
|
||||
size="lg"
|
||||
className="min-w-[11rem] border-white/40 bg-white/35 px-6 backdrop-blur-sm hover:bg-white/55 dark:border-white/14 dark:bg-white/6 dark:hover:bg-white/10"
|
||||
>
|
||||
<Link href={getLocalizedPath(localeKey, "/")}>{t("secondaryCta")}</Link>
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</MotionFade>
|
||||
</section>
|
||||
|
||||
+8
-5
@@ -15,11 +15,14 @@
|
||||
},
|
||||
"comingSoon": {
|
||||
"badge": "قريباً",
|
||||
"titleStart": "تجربة",
|
||||
"titleAccent": "أقوى",
|
||||
"titleEnd": "قيد الإطلاق.",
|
||||
"description": "نعمل حالياً على تحديث الموقع وتحسين التفاصيل البصرية والمحتوى لنقدّم تجربة أوضح، أسرع، وأكثر احترافية.",
|
||||
"note": "شكراً لصبرك. النسخة الجديدة ستصل قريباً بهوية أنضج وحضور أدق."
|
||||
"kicker": "مرحبااا، أنا محمد",
|
||||
"titleLineOne": "نسخة أوضح",
|
||||
"titleLineTwo": "وأقوى",
|
||||
"titleLineThree": "بالطريق.",
|
||||
"description": "عم نجهز النسخة الجديدة بهوية أنضف، محتوى أوضح، وتجربة أرتب من البداية للنهاية.",
|
||||
"note": "إذا عندك مشروع أو فكرة، فيك تتواصل من هلق ونبلش نحكي بالتفاصيل.",
|
||||
"primaryCta": "تواصل معي",
|
||||
"secondaryCta": "العودة للرئيسية"
|
||||
},
|
||||
"homepage": {
|
||||
"heroKicker": "مرحبااا، أنا محمد",
|
||||
|
||||
+8
-5
@@ -15,11 +15,14 @@
|
||||
},
|
||||
"comingSoon": {
|
||||
"badge": "Coming Soon",
|
||||
"titleStart": "Ein praeziserer",
|
||||
"titleAccent": "digitaler Auftritt",
|
||||
"titleEnd": "entsteht gerade.",
|
||||
"description": "Die Website wird aktuell in Inhalt, Gestaltung und Gesamtwirkung verfeinert, damit der Launch klarer, hochwertiger und stimmiger wird.",
|
||||
"note": "Danke fuer deine Geduld. Die naechste Version geht bald mit mehr Klarheit, Tempo und Charakter live."
|
||||
"kicker": "Hi, ich bin Moh",
|
||||
"titleLineOne": "Eine klarere",
|
||||
"titleLineTwo": "naechste Version",
|
||||
"titleLineThree": "ist unterwegs.",
|
||||
"description": "Die neue Version entsteht gerade mit staerkerer Identitaet, klarerem Inhalt und einer fokussierteren Erfahrung von Anfang bis Ende.",
|
||||
"note": "Wenn du schon ein Projekt im Kopf hast, kannst du dich jetzt melden und wir starten frueh ins Gespraech.",
|
||||
"primaryCta": "Kontakt aufnehmen",
|
||||
"secondaryCta": "Zur Startseite"
|
||||
},
|
||||
"homepage": {
|
||||
"heroKicker": "Hi, ich bin Moh",
|
||||
|
||||
+8
-5
@@ -15,11 +15,14 @@
|
||||
},
|
||||
"comingSoon": {
|
||||
"badge": "Coming Soon",
|
||||
"titleStart": "A sharper",
|
||||
"titleAccent": "digital presence",
|
||||
"titleEnd": "is taking shape.",
|
||||
"description": "The site is being refined with stronger storytelling, cleaner visuals, and a more polished experience before launch.",
|
||||
"note": "Thank you for your patience. The next version is arriving soon with more clarity, speed, and intent."
|
||||
"kicker": "Hi, I am Moh",
|
||||
"titleLineOne": "A clearer",
|
||||
"titleLineTwo": "next version",
|
||||
"titleLineThree": "is on the way.",
|
||||
"description": "The new version is being shaped with a stronger identity, cleaner content, and a more focused experience from top to bottom.",
|
||||
"note": "If you already have a project in mind, you can reach out now and we can start the conversation early.",
|
||||
"primaryCta": "Contact me",
|
||||
"secondaryCta": "Back to homepage"
|
||||
},
|
||||
"homepage": {
|
||||
"heroKicker": "Hi, I am Moh",
|
||||
|
||||
Reference in New Issue
Block a user