import { NavItem, CollectionItem, JournalEntry, FooterSection } from './types'; export const NAV_ITEMS: NavItem[] = [ { label: 'Collections', href: '#' }, { label: 'Atelier', href: '#' }, { label: 'Editorial', href: '#' }, ]; export const COLLECTIONS: CollectionItem[] = [ { id: 1, title: 'Tableware', number: '01', image: '/collection-tableware.png', aspectRatio: 'aspect-[3/4]', }, { id: 2, title: 'Lighting', number: '04', image: '/collection-lighting.png', aspectRatio: 'aspect-[4/3]', }, { id: 3, title: 'Vases', number: '02', image: '/collection-vases.png', aspectRatio: 'aspect-square', }, { id: 4, title: 'Serving', number: '05', image: '/pottery-bowls.png', aspectRatio: 'aspect-[3/4]', }, { id: 5, title: 'Kitchenware', number: '03', image: '/collection-kitchenware.png', aspectRatio: 'aspect-[3/5]', }, { id: 6, title: 'Textiles', number: '06', image: '/pottery-plates.png', aspectRatio: 'aspect-square', }, ]; export const JOURNAL_ENTRIES: JournalEntry[] = [ { id: 1, category: 'Studio', date: 'Oct 03', title: 'Product Photography for Small Businesses', description: "Learning that beautiful products aren't enough on their own — you also need beautiful photos to tell the story.", image: 'https://lh3.googleusercontent.com/aida-public/AB6AXuAipMlYLTcRT_hdc3VePfFIlrA56VzZ5G2y3gcRfmIZMERwGFKq2N19Gqo6mw7uZowXmjl2eJ89TI3Mcud2OyOfadO3mPVF_v0sI0OHupqM49WEFcWzH-Wbu3DL6bQ46F2Y8SIAk-NUQy8psjcIdBKRrM8fqdn4eOPANYTXpVxkLMAm4R0Axy4aEKNdmj917ZKKTxvXB-J8nGlITJkJ-ua7XcZOwGnfK5ttzyWW35A0oOSffCf972gmpV27wrVQgYJNLS7UyDdyQIQ', }, { id: 2, category: 'Guide', date: 'Jul 15', title: 'The Art of Packaging', description: "A practical guide for potters who want to package and send their handmade ceramics with care and confidence.", image: 'https://lh3.googleusercontent.com/aida-public/AB6AXuAaWGnX_NYT3S_lOflL2NJZGbWge4AAkvra4ymvF8ag-c1UKsOAIB-rsLVQXW5xIlPZipDiK8-ysPyv22xdgsvzs4EOXSSCcrT4Lb2YCe0u5orxRaZEA5TgxeoKq15zaWKSlmnHyPGjPd_7yglpfO13eZmbU5KaxFJ1KGO0UAxoO9BpsyCYgbgINMoSz3epGe5ZdwBWRH-5KCzjoLuXimFTLcd5bqg9T1YofTxgy2hWBMJzKkafyEniq8dP6hMmfNCLVcCHHHx0hRU', marginTop: true, }, { id: 3, category: 'Wellness', date: 'Jun 11', title: 'Finding Motivation in Clay', description: "10 gentle, practical tips to help potters find motivation during slow or uncertain moments in the creative process.", image: 'https://lh3.googleusercontent.com/aida-public/AB6AXuB8NOE5fGfN4d87cbcB27_Sh-nrlZlqxsTlYKbCZk98SoL-gHsPSWFNuxd1DxBq0g8Qysh0RBZ_btu-_WaH68UjV8SXPUalyxREvUqao4oXmra--pWAsaooWwKvWCzReYZ8kj7G-KIYIAo5mqudzB8n9C6-HVTNPPx9QgZHr_YsojMxlmmVcQ5bqk7-Lp0KtSAiVIPD2-1UE1dMGnkVSLUXKdgA65JIh8M3TtNkaJTGONuFKoTERrYOWe7u2BILnqyukTzlNcvK7Sc', }, ]; export const GALLERY_IMAGES = [ { src: '/ceramic-cups.png', likes: 2847, comments: 124, caption: 'Morning rituals ☕' }, { src: '/pottery-vase.png', likes: 3521, comments: 89, caption: 'Crafted with intention 🏺' }, { src: '/pottery-bowls.png', likes: 1956, comments: 67, caption: 'Wabi-sabi collection' }, { src: '/pottery-plates.png', likes: 4102, comments: 156, caption: 'Ready for your table ✨' }, { src: '/pottery-studio.png', likes: 5234, comments: 203, caption: 'Where the magic happens' }, { src: '/collection-tableware.png', likes: 2678, comments: 94, caption: 'Stacked with love' }, { src: '/collection-vases.png', likes: 3189, comments: 112, caption: 'Organic forms' }, { src: '/collection-kitchenware.png', likes: 1847, comments: 78, caption: 'Matcha time 🍵' }, ]; export const FOOTER_LINKS: FooterSection[] = [ { title: 'Shop', links: [ { label: 'All Ceramics', href: '#' }, { label: 'New Arrivals', href: '#' }, { label: 'Best Sellers', href: '#' }, { label: 'Gift Cards', href: '#' }, ], }, { title: 'Company', links: [ { label: 'Our Story', href: '#' }, { label: 'Sustainability', href: '#' }, { label: 'Careers', href: '#' }, { label: 'Press', href: '#' }, ], }, { title: 'Support', links: [ { label: 'FAQ', href: '#' }, { label: 'Shipping', href: '#' }, { label: 'Returns', href: '#' }, { label: 'Contact', href: '#' }, ], }, ];