-
Notifications
You must be signed in to change notification settings - Fork 227
/
Copy pathGiftCards.jsx
28 lines (25 loc) · 922 Bytes
/
GiftCards.jsx
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
import React, { useEffect } from 'react';
import Preloader from '../components/Preloader';
const GiftCards = () => {
useEffect(() => {
window.scrollTo(0, 0);
}, []);
return (
<>
<Preloader />
<div className="bg-blue-50 py-20 dark:bg-[rgb(51,51,51)] min-h-screen">
<div className="w-full mx-auto px-4 sm:px-6 lg:px-8">
<div className="bg-blue-100 rounded-lg overflow-hidden shadow-lg dark:bg-[rgb(40,40,40)]">
<div className="p-10">
<h2 className="text-5xl font-extrabold text-gray-900 mb-8 text-center dark:text-white">
GiftCards
</h2>
<p className="text-2xl text-center dark:text-gray-200">Sorry we have no Giftcards right now!!!</p>
</div>
</div>
</div>
</div>
</>
);
}
export default GiftCards