32 lines
1.2 KiB
TypeScript
32 lines
1.2 KiB
TypeScript
|
|
import type { StoreConfig } from './store-config';
|
||
|
|
|
||
|
|
export const store: StoreConfig = {
|
||
|
|
code: 'crypto',
|
||
|
|
label: 'Crypto',
|
||
|
|
brandName: 'DEGEN//DUCKS',
|
||
|
|
brandSub: 'Floor 0.012Ξ · 4200 minted',
|
||
|
|
nav: ['Drops', 'Rarity', 'Roadmap', 'Whitepaper'],
|
||
|
|
cartLabel: 'Stash',
|
||
|
|
ctaLabel: 'PUMP IT',
|
||
|
|
hero: {
|
||
|
|
eyebrow: 'LIVE · FLOOR 0.012Ξ',
|
||
|
|
title: 'Your unshakeable companion through every dip.',
|
||
|
|
body: 'When the chart bleeds red, your duck stays diamond. gm. buy the duck. hold the line. wagmi.',
|
||
|
|
cta: 'Mint Yours →',
|
||
|
|
},
|
||
|
|
collection: { title: '🔥 Latest Drops', meta: 'Floor 0.012Ξ · last sale 0.069Ξ' },
|
||
|
|
featured: {
|
||
|
|
kicker: 'Stake · Squeak · Earn',
|
||
|
|
title: 'Put your duck to work in the pond.',
|
||
|
|
body: 'Stake your duck in the pond and farm $QUACK while you sleep. Mint, stake, earn — wagmi.',
|
||
|
|
cta: 'Enter the pond',
|
||
|
|
},
|
||
|
|
reviews: [
|
||
|
|
{ q: 'down 60% this week but my HODL Duck hasnt blinked once. we are so back.', a: '@degenpond · ♥ 4.2K' },
|
||
|
|
{ q: 'talked to my Moon Duck during the crash instead of my PM. healthier honestly. gm.', a: '@onlyupjpeg · ♥ 9.1K' },
|
||
|
|
],
|
||
|
|
footer: { links: ['Discord', 'X', 'OpenSea', 'Docs'], note: 'not financial advice · gm' },
|
||
|
|
priceMultiplier: 3,
|
||
|
|
priceStyle: 'crypto',
|
||
|
|
};
|