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