From 0c3d4f2d06db7e96031604de69e57ef8e278c855 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Fri, 16 Jan 2026 16:25:29 +0000 Subject: [PATCH] Update components/gallery.tsx --- components/gallery.tsx | 60 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 components/gallery.tsx diff --git a/components/gallery.tsx b/components/gallery.tsx new file mode 100644 index 0000000..acdc2e4 --- /dev/null +++ b/components/gallery.tsx @@ -0,0 +1,60 @@ +import { Container } from "@/components/container"; +import { Heading } from "@/components/heading"; +import { Subheading } from "@/components/subheading"; +import Image from "next/image"; + +const images = [ + { + url: "https://images.unsplash.com/photo-1607860108855-64acf2078ed9?q=80&w=800&auto=format&fit=crop", + alt: "Car interior detailing" + }, + { + url: "https://images.unsplash.com/photo-1552930294-6b595f4c2974?q=80&w=800&auto=format&fit=crop", + alt: "Shiny car exterior" + }, + { + url: "https://images.unsplash.com/photo-1601362840469-51e4d8d59085?q=80&w=800&auto=format&fit=crop", + alt: "Wheel cleaning" + }, + { + url: "https://images.unsplash.com/photo-1599256621730-535171e28e50?q=80&w=800&auto=format&fit=crop", + alt: "Foam wash" + }, + { + url: "https://images.unsplash.com/photo-1520340356584-f9917d1eea6f?q=80&w=800&auto=format&fit=crop", + alt: "Ceramic coating application" + }, + { + url: "https://images.unsplash.com/photo-1580273916550-e323be2ae537?q=80&w=800&auto=format&fit=crop", + alt: "Polished luxury car" + } +]; + +export function Gallery() { + return ( + + ); +}