35 lines
1.5 KiB
TypeScript
35 lines
1.5 KiB
TypeScript
import type { StoreConfig } from './store-config';
|
||
|
||
export const store: StoreConfig = {
|
||
code: 'collector',
|
||
label: 'Collector',
|
||
brandName: 'The Collector’s Den',
|
||
brandSub: 'Graded · Vaulted · Appreciating',
|
||
nav: ['The Index', 'Provenance', 'The Vault', 'Appraisals'],
|
||
cartLabel: 'Portfolio',
|
||
ctaLabel: 'Acquire lot',
|
||
hero: {
|
||
eyebrow: 'Alternative Assets · Duck Class',
|
||
title: 'Ducks that have only ever appreciated.',
|
||
body: 'Independently graded, fully insured, sealed in the vault. Every lot in the catalogue has held — or grown — its value across every market on record.',
|
||
cta: 'View the Index',
|
||
},
|
||
collection: { title: 'The Standing Catalogue', meta: 'Six lots · all appreciating' },
|
||
featured: {
|
||
kicker: 'The Vault',
|
||
title: 'Climate-controlled, fully insured, never sold short.',
|
||
body: 'Every acquisition is graded by an independent panel, sealed with a certificate of authenticity, and held in the vault under your name. Liquidate any lot in forty-eight hours.',
|
||
cta: 'Request an appraisal',
|
||
},
|
||
reviews: [
|
||
{
|
||
q: 'Eleven years, two hundred and forty lots, and not one of them underwater. Try that with equities.',
|
||
a: 'Private collector, portfolio appraised at seven figures',
|
||
},
|
||
{ q: 'I no longer keep my faith in banks. I keep it in graded ducks, sealed in the vault.', a: 'Member, Assoc. of Duck Numismatics' },
|
||
],
|
||
footer: { links: ['The Index', 'The Vault', 'Appraisals', 'Provenance'], note: 'Member · Assoc. of Duck Numismatics' },
|
||
priceMultiplier: 28,
|
||
priceStyle: 'appraisal',
|
||
};
|