From c18fefeb8d7ac9435cdc9b63f799821df71bd574 Mon Sep 17 00:00:00 2001 From: DuongNguyendev Date: Sat, 23 May 2026 15:57:34 +0700 Subject: [PATCH] Build ipv6 --- app/components/home/GallerySection.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/home/GallerySection.tsx b/app/components/home/GallerySection.tsx index cb24933..88de053 100644 --- a/app/components/home/GallerySection.tsx +++ b/app/components/home/GallerySection.tsx @@ -5,7 +5,7 @@ const BASE = process.env.NEXT_PUBLIC_BASE_PATH || ""; type GalleryItem = { src: string; alt: string; - span: "wide" | "normal" | "full"; + span: string; }; type Props = { @@ -18,14 +18,14 @@ type Props = { }; // Map span → Tailwind col-span classes -const spanClass: Record = { +const spanClass: Record = { wide: "md:col-span-2 lg:col-span-2", normal: "", full: "md:col-span-2 lg:col-span-3", }; // Map span → chiều cao ảnh -const heightClass: Record = { +const heightClass: Record = { wide: "h-[240px] md:h-[340px] lg:h-[420px]", normal: "h-[240px] md:h-[340px] lg:h-[420px]", full: "h-[260px] md:h-[360px] lg:h-[480px]",