implement blog subscription feature with modal and email handling

This commit is contained in:
2026-06-02 19:46:47 +02:00
parent 77f3c4ddbd
commit 3f985af13b
7 changed files with 108 additions and 85 deletions
-4
View File
@@ -3,7 +3,6 @@ import { BlogHero } from "@/app/[locale]/blog/_components/BlogHero";
import { BlogCTASection } from "@/app/[locale]/blog/_components/BlogCTASection";
import { ArticleList } from "@/app/[locale]/blog/[slug]/_components/ArticleList";
import { getTranslations } from "next-intl/server";
import { BlogSubFormController } from '@/components/ui/BlogSubFormController';
type props = {
params: Promise<{ locale: string }>;
@@ -16,12 +15,9 @@ export default async function BlogPage({ params }: props) {
return (
<main className="bg-brand-beige">
<BlogSubFormController />
<BlogHero />
<BlogCTASection
locale={locale}
title={t("title")}
text={t("text")}
cta={t("cta")}