import { SideBySideCard, SideBySideCardList } from '@/components/composite/SideBySideCard';
// Single card
<SideBySideCard
id="1"
title="Stefano Bemer"
description="Master shoemaker for over 30 years..."
category="Leather Craftsmanship"
image={{ src: "/artisan.jpg", alt: "Stefano Bemer" }}
href="/artisans/stefano-bemer"
imagePosition="left"
/>
// Multiple cards with auto-alternating positions
<SideBySideCardList
items={[
{ id: '1', title: 'Artisan 1', ... },
{ id: '2', title: 'Artisan 2', ... },
]}
/>
// With all features
<SideBySideCard
{...props}
iconListItems={[
{ icon: MapPin, text: "Via Roma 123" },
{ icon: Clock, text: "Open 9AM-6PM" },
]}
tags={[
{ text: "Craftsmanship", href: "/craftsmanship" },
]}
rating={{ value: 4.6, type: "star", label: "(89 reviews)" }}
/>