import { Carousel001 } from "@/components/ui/carousel-001"export default function Page() {
return (
<Carousel001
title="Stories in motion"
subtitle="Editorial highlights for launches, moods, and moments"
slides={[
{
id: "one",
imageSubtitle: "Light cuts through the noise",
imageSrc:
"https://cdn.cosmos.so/ef24a640-42da-4133-96a0-4572d2b0ccbe?format=webp&w=1200",
imageAlt: "Neon signal in darkness",
},
{
id: "two",
imageSubtitle: "Where color meets atmosphere",
imageSrc:
"https://cdn.cosmos.so/6d05ef91-722e-4fcc-83c5-765e348ec644?format=webp&w=1200",
imageAlt: "Atmospheric horizon scene",
},
]}
/>
)
}