-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
47 lines (45 loc) · 1.33 KB
/
constants.ts
File metadata and controls
47 lines (45 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import { NFT } from './types';
export const MOCK_NFTS: NFT[] = [
{
id: 1,
name: 'Astro Chimp #342',
imageUrl: 'https://picsum.photos/seed/astrochimp/500',
collection: 'Galactic Primates',
traits: ['Zero-G Banana', 'Comet Tail', 'Nebula Skin'],
},
{
id: 2,
name: 'Cyber Ronin #78',
imageUrl: 'https://picsum.photos/seed/cyberronin/500',
collection: 'Neo-Edo Warriors',
traits: ['Plasma Katana', 'Holographic Armor', 'Glitching Aura'],
},
{
id: 3,
name: 'Mystic Golem #09',
imageUrl: 'https://picsum.photos/seed/mysticgolem/500',
collection: 'Ethereal Guardians',
traits: ['Rune-carved Stone', 'Floating Crystals', 'Ancient Wisdom'],
},
{
id: 4,
name: 'Deep Sea Siren #414',
imageUrl: 'https://picsum.photos/seed/deepsiren/500',
collection: 'Abyssal Melodies',
traits: ['Bioluminescent Scales', 'Coral Crown', 'Sonar Song'],
},
{
id: 5,
name: 'Pixel Paladin #112',
imageUrl: 'https://picsum.photos/seed/pixelpaladin/500',
collection: '8-Bit Legends',
traits: ['Voxel Shield', '+1 Sword of Slaying', 'Retro Charm'],
},
{
id: 6,
name: 'Solar Phoenix #001',
imageUrl: 'https://picsum.photos/seed/solarphoenix/500',
collection: 'Celestial Beings',
traits: ['Wings of Flame', 'Rebirth Cycle', 'Stardust Feathers'],
},
];