diff --git a/app/[locale]/(site)/page.tsx b/app/[locale]/(site)/page.tsx index 6bcc712..cd69e83 100644 --- a/app/[locale]/(site)/page.tsx +++ b/app/[locale]/(site)/page.tsx @@ -204,6 +204,9 @@ export default async function HomePage({ params }: HomePageProps) { kicker={t("heroVisual.kicker")} title={t("heroVisual.title")} description={t("heroVisual.description")} + availability={contactCtaCopy.availabilityValue} + primaryCta={{ label: t("heroVisual.primaryCta"), href: portfolioHref }} + secondaryCta={{ label: t("heroVisual.secondaryCta"), href: contactHref }} /> + {availability ? ( + + + + + + + {availability} + + + ) : null} + + + -

+

{description}

+ + {primaryCta || secondaryCta ? ( + +
+ {primaryCta ? ( + + ) : null} + {secondaryCta ? ( + + ) : null} +
+
+ ) : null}
); diff --git a/messages/ar.json b/messages/ar.json index accce7e..2a683e7 100644 --- a/messages/ar.json +++ b/messages/ar.json @@ -44,6 +44,8 @@ }, "heroVisual": { "kicker": "مرحبا، أنا محمد", + "primaryCta": "شاهد الأعمال", + "secondaryCta": "تواصل معي", "title": "مطوّر واجهات ويب\nومصمّم جرافيك", "description": "أبني حلول رقمية لمشاكل حقيقية\nتبدو قوية وتعمل بكفاءة." }, diff --git a/messages/de.json b/messages/de.json index 0d3fed9..341fda7 100644 --- a/messages/de.json +++ b/messages/de.json @@ -44,6 +44,8 @@ }, "heroVisual": { "kicker": "Hi, ich bin Moh", + "primaryCta": "Arbeiten ansehen", + "secondaryCta": "Kontakt aufnehmen", "title": "frontend\ndeveloper\n& designer", "description": "Ich entwickle digitale Loesungen fuer echte Probleme,\ndie gut aussehen und sauber funktionieren." }, diff --git a/messages/en.json b/messages/en.json index 4f6ff79..f581ee3 100644 --- a/messages/en.json +++ b/messages/en.json @@ -44,6 +44,8 @@ }, "heroVisual": { "kicker": "Hi, I am Moh", + "primaryCta": "View work", + "secondaryCta": "Get in touch", "title": "frontend\ndeveloper\n& designer", "description": "I craft digital solutions for human problems\nthat look good and work well." },