forked from Arikabz/coupon.dog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path:w
27 lines (25 loc) · 955 Bytes
/
:w
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
import React from 'react'
import Image from 'next/image'
const CouponCard = () => {
return (
<div className="mx-4 mt-4 card card-side bg-base-100 shadow-xl">
<figure>
<Image
src="https://images.ctfassets.net/3vz37y2qhojh/5ovxftNE5jbkvWUqcnohYk/472f2dbf2ec1eb26b1e9a5b879dca535/Korean_Burgers.jpg?w=750&fit=fill&fm=webp"
alt="Burguer"
height={270}
width={270}
/>
</figure>
<div className="card-body">
<h2 className="card-title text-2xl">Get 20% off on Burgers!</h2>
<h2 className="card-title">McArthys</h2>
<div className="card-actions justify-end">
<button className="btn">See Coupon</button>
</div>
<code className='text-base btn-primary btn'>wefoi3124j831js10324</code>
</div>
</div>
)
}
export default CouponCard