import { Button } from "../components/ui/button" import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, } from "../components/ui/card" import { Tabs, TabsContent, TabsList, TabsTrigger, } from "../components/ui/tabs" import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, } from "../components/ui/carousel" const data = [{ value: "thisPage", handle: "1", title: "This Page", description: "random text", images: [{ src: "temp.jpg", alt: "text" }, { src: "temp.jpg", alt: "text2" }] }, { value: "thatPage", title: "That Page", handle: "2", description: "random text", images: [{ src: "temp.jpg", alt: "text" }, { src: "temp.jpg", alt: "text2" }] }, { value: "otherPge", title: "Other Page", handle: "3", description: "random text", images: [{ src: "temp.jpg", alt: "text" }, { src: "temp.jpg", alt: "text2" }] }]; export function ShowcaseTabs() { return (
{data.map((item) => ( {item.title} {item.description} {item.images.map((image, index) => ( {image.alt} ))}
))} {data.map((item) => ( {item.handle} ))}
) }