296 lines
13 KiB
TypeScript
296 lines
13 KiB
TypeScript
import { NavItem, CollectionItem, JournalEntry, FooterSection } from './types';
|
|
|
|
export const NAV_ITEMS: NavItem[] = [
|
|
{ label: 'Collections', href: '/collections' },
|
|
{ label: 'Atelier', href: '/atelier' },
|
|
{ label: 'Editorial', href: '/editorial' },
|
|
];
|
|
|
|
export const COLLECTIONS: CollectionItem[] = [
|
|
// --- Tableware ---
|
|
{
|
|
id: 1,
|
|
title: 'Coastal Grey Tableware Set',
|
|
slug: 'coastal-grey-tableware-set',
|
|
number: '01',
|
|
image: '/product_images/Lass_aussehen_produkt_202603231513 (1).png',
|
|
images: ['/product_images/Lass_aussehen_produkt_202603231513 (1).png'],
|
|
price: 140,
|
|
description: 'A wheel-thrown set of cups, bowls, and saucers finished in a speckled coastal grey glaze. Handmade in Corpus Christi, TX. Dishwasher safe.',
|
|
aspectRatio: 'aspect-[4/3]',
|
|
},
|
|
{
|
|
id: 13,
|
|
title: 'Ceramic Place Setting',
|
|
slug: 'ceramic-place-setting',
|
|
number: '13',
|
|
image: '/product_images/Produkt_foto_studio_202603231654 (1).png',
|
|
images: ['/product_images/Produkt_foto_studio_202603231654 (1).png'],
|
|
price: 120,
|
|
description: 'A handmade ceramic plate with a small ceramic tree accent piece. A complete place setting for the table, made in small batches in Corpus Christi, TX.',
|
|
aspectRatio: 'aspect-square',
|
|
},
|
|
{
|
|
id: 18,
|
|
title: 'Textured Floral Plates — Set of Four',
|
|
slug: 'textured-floral-plates',
|
|
number: '18',
|
|
image: '/product_images/Produkt_foto_studio_202603231654 (6).png',
|
|
images: ['/product_images/Produkt_foto_studio_202603231654 (6).png'],
|
|
price: 210,
|
|
description: 'A set of four round stoneware plates with a hand-pressed floral texture. Each plate varies slightly in glaze — soft white and sage tones inspired by the Gulf Coast.',
|
|
aspectRatio: 'aspect-[3/4]',
|
|
},
|
|
// --- Coffee Cups ---
|
|
{
|
|
id: 4,
|
|
title: 'Set of Three Stoneware Cups',
|
|
slug: 'set-of-three-stoneware-cups',
|
|
number: '04',
|
|
image: '/product_images/lass_das_so_202603231510 (3).png',
|
|
images: ['/product_images/lass_das_so_202603231510 (3).png'],
|
|
price: 120,
|
|
description: 'Three wheel-thrown stoneware cups with a layered grey-green interior glaze and dark clay body. No two are alike. Ideal for coffee, tea, or espresso.',
|
|
aspectRatio: 'aspect-[4/5]',
|
|
},
|
|
{
|
|
id: 5,
|
|
title: 'Dog Mam Cup — Teal',
|
|
slug: 'dog-mam-cup-teal',
|
|
number: '05',
|
|
image: '/product_images/lass_das_so_202603231511.png',
|
|
images: ['/product_images/lass_das_so_202603231511.png'],
|
|
price: 65,
|
|
description: 'A handmade ceramic cup stamped with "Dog Mam" in the clay. Finished in a flowing orange and teal coastal glaze. A one-of-a-kind gift for dog lovers.',
|
|
aspectRatio: 'aspect-square',
|
|
},
|
|
{
|
|
id: 6,
|
|
title: 'Dog Mam Cup — Blush',
|
|
slug: 'dog-mam-cup-blush',
|
|
number: '06',
|
|
image: '/product_images/lass_das_so_202603231511 (1).png',
|
|
images: ['/product_images/lass_das_so_202603231511 (1).png'],
|
|
price: 45,
|
|
description: 'A handmade ceramic cup stamped with "Dog Mam" in the clay. Finished in a warm blush and amber glaze. A one-of-a-kind gift for dog lovers.',
|
|
aspectRatio: 'aspect-[3/4]',
|
|
},
|
|
{
|
|
id: 8,
|
|
title: 'Dark Stoneware Cups — Amber Drip',
|
|
slug: 'dark-stoneware-cups-amber-drip',
|
|
number: '08',
|
|
image: '/product_images/lass_das_so_202603231511 (3).png',
|
|
images: ['/product_images/lass_das_so_202603231511 (3).png'],
|
|
price: 110,
|
|
description: 'Five handmade stoneware cups with a dark clay body and flowing amber drip glaze. Small-batch, wheel-thrown in Corpus Christi. Each piece is unique.',
|
|
aspectRatio: 'aspect-square',
|
|
},
|
|
// --- Bowls ---
|
|
{
|
|
id: 3,
|
|
title: 'Dark Stoneware Bowl',
|
|
slug: 'dark-stoneware-bowl',
|
|
number: '03',
|
|
image: '/product_images/lass_das_so_202603231510 (2).png',
|
|
images: ['/product_images/lass_das_so_202603231510 (2).png'],
|
|
price: 95,
|
|
description: 'A single wheel-thrown stoneware bowl with a dark exterior and rich amber interior glaze. Made in Corpus Christi, TX. Dishwasher safe.',
|
|
aspectRatio: 'aspect-[3/4]',
|
|
},
|
|
{
|
|
id: 7,
|
|
title: 'Pastel Bowl Collection',
|
|
slug: 'pastel-bowl-collection',
|
|
number: '07',
|
|
image: '/product_images/lass_das_so_202603231511 (2).png',
|
|
images: ['/product_images/lass_das_so_202603231511 (2).png'],
|
|
price: 150,
|
|
description: 'A collection of handmade stoneware bowls and cups in soft coastal pastels — blush pink, sky blue, buttercup yellow, and white. Each piece is unique.',
|
|
aspectRatio: 'aspect-[4/3]',
|
|
},
|
|
{
|
|
id: 10,
|
|
title: 'Coastal Sunset Bowl Set',
|
|
slug: 'coastal-sunset-bowl-set',
|
|
number: '10',
|
|
image: '/product_images/lass_das_so_202603231510.png',
|
|
images: ['/product_images/lass_das_so_202603231510.png'],
|
|
price: 185,
|
|
description: 'Stacked stoneware bowls glazed in warm coastal tones — amber, orange, pink, and teal — inspired by the Gulf Coast sunsets of Corpus Christi.',
|
|
aspectRatio: 'aspect-[3/4]',
|
|
},
|
|
{
|
|
id: 11,
|
|
title: 'Handmade Blush Bowl',
|
|
slug: 'handmade-blush-bowl',
|
|
number: '11',
|
|
image: '/product_images/lass_das_so_202603231510 (1).png',
|
|
images: ['/product_images/lass_das_so_202603231510 (1).png'],
|
|
price: 240,
|
|
description: 'A single handmade stoneware bowl with a luminous blush and rose interior glaze. Wheel-thrown and one-of-a-kind. Made in Corpus Christi, TX.',
|
|
aspectRatio: 'aspect-[4/3]',
|
|
},
|
|
// --- Kitchenware ---
|
|
{
|
|
id: 12,
|
|
title: 'Dark Stoneware Vessel',
|
|
slug: 'dark-stoneware-vessel',
|
|
number: '12',
|
|
image: '/product_images/Produkt_foto_studio_202603231654.png',
|
|
images: ['/product_images/Produkt_foto_studio_202603231654.png'],
|
|
price: 150,
|
|
description: 'A squat wheel-thrown stoneware vessel with a textured dark clay body and amber drip glaze. Functional and sculptural — use as a utensil holder or vase.',
|
|
aspectRatio: 'aspect-[3/4]',
|
|
},
|
|
{
|
|
id: 16,
|
|
title: 'Studio Collection — Mixed Pieces',
|
|
slug: 'studio-collection-mixed-pieces',
|
|
number: '16',
|
|
image: '/product_images/Produkt_foto_studio_202603231654 (4).png',
|
|
images: ['/product_images/Produkt_foto_studio_202603231654 (4).png'],
|
|
price: 145,
|
|
description: 'A curated grouping from the studio — includes small bowls, trinket dishes, a flower frog, and miniature ceramic houses. Each piece handmade in Corpus Christi.',
|
|
aspectRatio: 'aspect-square',
|
|
},
|
|
// --- Decoration ---
|
|
{
|
|
id: 2,
|
|
title: 'Handmade Ceramic Rose',
|
|
slug: 'handmade-ceramic-rose',
|
|
number: '02',
|
|
image: '/product_images/Lass_aussehen_produkt_202603231513 (2).png',
|
|
images: ['/product_images/Lass_aussehen_produkt_202603231513 (2).png'],
|
|
price: 160,
|
|
description: 'A hand-sculpted ceramic rose in unglazed white stoneware. A one-of-a-kind decorative piece — no two petals are the same. Made in Corpus Christi, TX.',
|
|
aspectRatio: 'aspect-square',
|
|
},
|
|
{
|
|
id: 9,
|
|
title: 'Hope Bowl with Clay Tokens',
|
|
slug: 'hope-bowl-with-clay-tokens',
|
|
number: '09',
|
|
image: '/product_images/Lass_aussehen_produkt_202603231513.png',
|
|
images: ['/product_images/Lass_aussehen_produkt_202603231513.png'],
|
|
price: 130,
|
|
description: 'A decorative stoneware bowl filled with handmade clay word tokens — small houses and tags stamped with "Hope". An intentional piece for your home.',
|
|
aspectRatio: 'aspect-[3/4]',
|
|
},
|
|
{
|
|
id: 14,
|
|
title: 'Ceramic House Lanterns — Set of Four',
|
|
slug: 'ceramic-house-lanterns',
|
|
number: '14',
|
|
image: '/product_images/Produkt_foto_studio_202603231654 (2).png',
|
|
images: ['/product_images/Produkt_foto_studio_202603231654 (2).png'],
|
|
price: 95,
|
|
description: 'Four handmade ceramic house lanterns with cut-out windows that glow when lit from inside. Each house has a unique facade — hearts, stars, and arched details.',
|
|
aspectRatio: 'aspect-[4/3]',
|
|
},
|
|
{
|
|
id: 15,
|
|
title: 'Flower Frog Vase — Gulf Blue',
|
|
slug: 'flower-frog-vase-gulf-blue',
|
|
number: '15',
|
|
image: '/product_images/Produkt_foto_studio_202603231654 (3).png',
|
|
images: ['/product_images/Produkt_foto_studio_202603231654 (3).png'],
|
|
price: 180,
|
|
description: 'A dome-shaped ceramic flower frog glazed in soft Gulf blue. Holds dried or fresh flowers through pin holes on top. Handmade in Corpus Christi, TX.',
|
|
aspectRatio: 'aspect-[3/4]',
|
|
},
|
|
{
|
|
id: 17,
|
|
title: 'Miniature Ceramic Village',
|
|
slug: 'miniature-ceramic-village',
|
|
number: '17',
|
|
image: '/product_images/Produkt_foto_studio_202603231654 (5).png',
|
|
images: ['/product_images/Produkt_foto_studio_202603231654 (5).png'],
|
|
price: 165,
|
|
description: 'Small ceramic house sculptures arranged on round clay discs — each village is unique. A handmade decorative piece with hand-carved door and window details.',
|
|
aspectRatio: 'aspect-[4/5]',
|
|
},
|
|
{
|
|
id: 19,
|
|
title: 'Stoneware Kitchen Vessel',
|
|
slug: 'stoneware-kitchen-vessel',
|
|
number: '19',
|
|
image: '/product_images/Produkt_foto_studio_202603231744.png',
|
|
images: ['/product_images/Produkt_foto_studio_202603231744.png'],
|
|
price: 135,
|
|
description: 'A versatile wheel-thrown stoneware vessel designed for kitchen utility. Minimalist form with a responsive glaze.',
|
|
aspectRatio: 'aspect-[3/4]',
|
|
},
|
|
];
|
|
|
|
export const JOURNAL_ENTRIES: JournalEntry[] = [
|
|
{
|
|
id: 1,
|
|
category: 'Studio',
|
|
date: 'Oct 03',
|
|
title: 'Product Photography for Small Businesses',
|
|
slug: '/editorial/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: 'How to Care for Handmade Ceramics',
|
|
slug: '/editorial/how-to-care-for-handmade-ceramics',
|
|
description: 'How to care for handmade ceramics: a practical daily care guide for mugs, bowls, and plates, including dishwasher, microwave, crazing, and cleaning tips.',
|
|
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',
|
|
slug: '/editorial/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: '/product_images/kitchenware.png', likes: 2847, comments: 124, caption: 'Morning rituals ☕' },
|
|
{ src: '/product_images/vases.png', likes: 3521, comments: 89, caption: 'Crafted with intention 🏺' },
|
|
{ src: '/product_images/serving.png', likes: 1956, comments: 67, caption: 'Wabi-sabi collection' },
|
|
{ src: '/product_images/textiles.png', likes: 4102, comments: 156, caption: 'Ready for your table ✨' },
|
|
{ src: '/landingpage/artelier.png', likes: 5234, comments: 203, caption: 'Where the magic happens' },
|
|
{ src: '/product_images/tableware.png', likes: 2678, comments: 94, caption: 'Stacked with love' },
|
|
{ src: '/product_images/vases.png', likes: 3189, comments: 112, caption: 'Organic forms' },
|
|
{ src: '/product_images/kitchenware.png', likes: 1847, comments: 78, caption: 'Matcha time 🍵' },
|
|
];
|
|
|
|
export const FOOTER_LINKS: FooterSection[] = [
|
|
{
|
|
title: 'Shop',
|
|
links: [
|
|
{ label: 'All Ceramics', href: '/collections' },
|
|
{ label: 'Best Sellers', href: '#' },
|
|
{ label: 'Gift Cards', href: '#' },
|
|
],
|
|
},
|
|
{
|
|
title: 'Company',
|
|
links: [
|
|
{ label: 'Our Story', href: '/atelier' },
|
|
{ label: 'Sustainability', href: '#' },
|
|
{ label: 'Careers', href: '#' },
|
|
{ label: 'Press', href: '#' },
|
|
],
|
|
},
|
|
{
|
|
title: 'Support',
|
|
links: [
|
|
{ label: 'FAQ', href: '/faq' },
|
|
{ label: 'Shipping', href: '/shipping' },
|
|
{ label: 'Returns', href: '/returns' },
|
|
{ label: 'Contact', href: '/contact' },
|
|
],
|
|
},
|
|
];
|