88 lines
1.9 KiB
JavaScript
88 lines
1.9 KiB
JavaScript
export const people = [
|
|
{
|
|
id: 1,
|
|
name: 'Jane Doe',
|
|
image: '/assets/DemoSlidingProfile/avatar1.png',
|
|
cover: '/assets/DemoSlidingProfile/flower.jpeg',
|
|
location: 'Belfast, Northern Ireland',
|
|
purchased: 120,
|
|
wished: 271,
|
|
likes: '12K',
|
|
},
|
|
{
|
|
id: 2,
|
|
name: 'Joe Bloggs',
|
|
image: '/assets/DemoSlidingProfile/avatar2.png',
|
|
cover: '/assets/DemoSlidingProfile/cover4.jpeg',
|
|
location: 'New York City, America',
|
|
purchased: 91,
|
|
wished: 811,
|
|
likes: '102K',
|
|
},
|
|
{
|
|
id: 3,
|
|
name: 'Antonio Romero',
|
|
image: '/assets/DemoSlidingProfile/avatar4.png',
|
|
cover: '/assets/DemoSlidingProfile/cover1.jpeg',
|
|
location: 'Cambodia, Asia',
|
|
purchased: 91,
|
|
wished: 811,
|
|
likes: '102K',
|
|
},
|
|
{
|
|
id: 4,
|
|
name: 'Aditi Conner',
|
|
image: '/assets/DemoSlidingProfile/avatar3.png',
|
|
cover: '/assets/DemoSlidingProfile/cover5.jpeg',
|
|
location: 'Antartica',
|
|
purchased: 91,
|
|
wished: 811,
|
|
likes: '102K',
|
|
},
|
|
{
|
|
id: 5,
|
|
name: 'Martina Salas',
|
|
image: '/assets/DemoSlidingProfile/avatar5.png',
|
|
cover: '/assets/DemoSlidingProfile/cover2.jpeg',
|
|
location: 'South Africa',
|
|
purchased: 91,
|
|
wished: 811,
|
|
likes: '102K',
|
|
},
|
|
{
|
|
id: 6,
|
|
name: 'Dayna Grimes',
|
|
image: '/assets/DemoSlidingProfile/avatar6.png',
|
|
cover: '/assets/DemoSlidingProfile/cover6.jpeg',
|
|
location: 'China',
|
|
purchased: 91,
|
|
wished: 811,
|
|
likes: '102K',
|
|
},
|
|
];
|
|
|
|
export const collections = [
|
|
{
|
|
name: 'Winter',
|
|
image: '/assets/DemoSlidingProfile/winter.png',
|
|
no: 95,
|
|
},
|
|
{
|
|
name: 'Summer',
|
|
image: '/assets/DemoSlidingProfile/summer.png',
|
|
no: 73,
|
|
},
|
|
{
|
|
name: 'Autumn',
|
|
image: '/assets/DemoSlidingProfile/autumn.png',
|
|
no: 32,
|
|
},
|
|
{
|
|
name: 'Spring',
|
|
image: '/assets/DemoSlidingProfile/spring.png',
|
|
no: 18,
|
|
},
|
|
];
|
|
|
|
export const tags = ['Jackets', 'Shirts', 'Jeans', 'Sweaters', 'Coats'];
|