32 lines
1.2 KiB
TypeScript
32 lines
1.2 KiB
TypeScript
import type { StoreConfig } from './store-config';
|
||
|
||
export const store: StoreConfig = {
|
||
code: 'supper',
|
||
label: 'Supper',
|
||
brandName: 'Rubber Dubber',
|
||
brandSub: 'Supper Club · Since 1960',
|
||
nav: ['Shop', 'The Table', 'Recipes', 'Our Story'],
|
||
cartLabel: 'Basket',
|
||
ctaLabel: 'Add to table',
|
||
hero: {
|
||
eyebrow: 'A seat at the table',
|
||
title: 'Nobody should have to eat supper alone.',
|
||
body: 'Meet the little companions who pull up a chair, keep you company, and never once steal your fries.',
|
||
cta: 'Set the Table →',
|
||
},
|
||
collection: { title: 'Pull up a chair', meta: 'Six companions, each with their own appetite.' },
|
||
featured: {
|
||
kicker: 'This week at the table',
|
||
title: 'Tomato Soup pairs beautifully with a thunderstorm.',
|
||
body: 'And grilled cheese, naturally. There’s a recipe card tucked into every box — handwritten, a little smudged.',
|
||
cta: 'See the pairing',
|
||
},
|
||
reviews: [
|
||
{ q: 'I set a place for Sunday Roast every week now. Supper feels a little less quiet.', a: 'Marta, eats at seven' },
|
||
{ q: 'My kid insists Tomato Soup gets its own spoon. We oblige.', a: 'Dev, table for three' },
|
||
],
|
||
footer: { links: ['Shop', 'Recipes', 'Journal', 'Stockists'], note: 'Made warm · est. 1960' },
|
||
priceMultiplier: 1,
|
||
priceStyle: 'plain',
|
||
};
|