fix: deploy

This commit is contained in:
2026-02-10 16:04:16 +01:00
parent 94cd51b070
commit c8894032b2
18 changed files with 67 additions and 828 deletions

View File

@@ -11,16 +11,13 @@ import GallerySection from '@/components/home/GallerySection';
import VideoSection from '@/components/home/VideoSection';
import CTA from '@/components/home/CTA';
import Reveal from '@/components/Reveal';
import { getTranslations } from 'next-intl/server';
import { getTranslations, setRequestLocale } from 'next-intl/server';
import { Metadata } from 'next';
import { getOGImageMetadata } from '@/lib/metadata';
export default async function HomePage({
params,
}: {
params: Promise<{ locale: string }>;
}) {
export default async function HomePage({ params }: { params: Promise<{ locale: string }> }) {
const { locale } = await params;
setRequestLocale(locale);
return (
<div className="flex flex-col min-h-screen">
<JsonLd