style(hero): make home title single line

This commit is contained in:
mstfyldz
2026-06-04 20:13:53 +03:00
parent f54cbb0975
commit cbb25881ad
4 changed files with 7 additions and 8 deletions
+2 -3
View File
@@ -8,7 +8,7 @@ import { Badge } from "@/app/components/ui/badge";
export default function GaleriClient({ lang, dict }: { lang: string; dict: any }) {
const t = dict.gallery;
const CATEGORIES = [t.all, t.venues, "Beach", "Bungalov", "Kite Surf", "Hotel"] as const;
type Category = string;
@@ -30,11 +30,10 @@ export default function GaleriClient({ lang, dict }: { lang: string; dict: any }
{ src: "https://res.cloudinary.com/du7xohbct/image/upload/v1780592550/moygrup/kitesurf/Timeless-moments-at-Kite-Beach.-Where-every-wave-tells-a-story.-_mustfreeee-4.jpg", cat: "Kite Surf", title: "Rüzgarla Sörf" },
{ src: "https://res.cloudinary.com/du7xohbct/image/upload/v1780592552/moygrup/kitesurf/Timeless-moments-at-Kite-Beach.-Where-every-wave-tells-a-story.-_mustfreeee-5.jpg", cat: "Kite Surf", title: "Deniz ve Özgürlük" },
{ src: "https://res.cloudinary.com/du7xohbct/image/upload/v1780592553/moygrup/kitesurf/Timeless-moments-at-Kite-Beach.-Where-every-wave-tells-a-story.-_mustfreeee.jpg", cat: "Kite Surf", title: "Kitesurf Eğitimi" },
{ src: "https://images.unsplash.com/photo-1449844908441-8829872d2607?auto=format&fit=crop&q=80&w=800", cat: "Bungalov", title: "Doğada Konaklama" },
];
const [active, setActive] = useState<Category>(t.all);
const [lightbox, setLightbox] = useState<{src:string, cat:string, title:string} | null>(null);
const [lightbox, setLightbox] = useState<{ src: string, cat: string, title: string } | null>(null);
const filtered = active === t.all ? IMAGES : IMAGES.filter((img) => img.cat === active);