implement blog subscription feature with modal and email handling
This commit is contained in:
@@ -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")}
|
||||
|
||||
Reference in New Issue
Block a user