Fix docker

This commit is contained in:
diyaa
2026-03-13 04:01:58 +01:00
parent c9e9ae6b90
commit 2b5e91377c
3 changed files with 8 additions and 5 deletions
+2 -3
View File
@@ -1,15 +1,14 @@
import Link from "next/link";
import type { CommonContent, HomeContent, HomeVariantContent } from "@/content/types";
import type { HomeContent, HomeVariantContent } from "@/content/types";
import type { Locale } from "@/lib/i18n";
import { getEmailHref, getModeValue, isComingSoonMode } from "@/lib/site";
type HeroSectionProps = {
locale: Locale;
home: HomeContent;
common: CommonContent;
};
export default function HeroSection({ locale, home, common }: HeroSectionProps) {
export default function HeroSection({ locale, home }: HeroSectionProps) {
const activeHome: HomeVariantContent = getModeValue(home);
const emailHref = getEmailHref();