-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPopularSection.tsx
35 lines (31 loc) · 1.1 KB
/
PopularSection.tsx
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
import React from "react";
import Image from "next/image";
import { Card } from "./Card";
import { Text } from "./Text";
export const PopularSection = () => {
return (
<div className="w-screen mb-32 flex flex-col items-center">
<Text variant='title' className="text-dark-200">Popular</Text>
<div className="flex flex-col md:flex-row justify-center">
<Card
className='md:w-2/6'
title="Black Corset"
image="corset-black"
summary="Featuring one layer of high quality cotton twill that’s laminated to the outer fashion fabric."
/>
<Card
className='md:w-2/6 md:mx-[72px]'
title="Leather Corset"
image="corset-leather"
summary="Made with high-quality genuine leather, classic Black Leather Corset for all types of outfits."
/>
<Card
className='md:w-2/6'
title="Floral Corset"
image="corset-floral"
summary="Tiny spring flowers cover this corset. Totally cotton with matching cotton details."
/>
</div>
</div>
);
};