-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2136 from SadafKausar2025/gift
Created new Gift Card Page of VigyBag
- Loading branch information
Showing
18 changed files
with
362 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import React from "react"; | ||
import gift from "../../../assets/giftcard.jpg"; | ||
import { FaSearch } from "react-icons/fa"; | ||
import { MdHeight } from "react-icons/md"; | ||
|
||
function Header() { | ||
return ( | ||
<> | ||
<header className="relative h-[100vh] md:h-[100vh] flex items-center justify-center overflow-hidden"> | ||
<div className="absolute inset-0 z-0"> | ||
<img | ||
src={gift} | ||
alt="Background" | ||
className="w-full h-full object-cover filter mt-16" | ||
/> | ||
</div> | ||
<div className="relative flex justify-between gap-48 z-10 text-center text-white px-4"> | ||
<lord-icon | ||
style={{ | ||
height: "170px", | ||
width: "170px", | ||
}} | ||
src="https://cdn.lordicon.com/lgmqrevt.json" | ||
trigger="morph" | ||
stroke="bold" | ||
state="morph-open"></lord-icon> | ||
<div> | ||
<h1 className="text-4xl md:text-8xl font-bold mb-2 md:mb-4 text-yellow-300"> | ||
Gift Card Store | ||
</h1> | ||
<p className="text-5xl max-w-3xl mt-10 font-bold text-green-300"> | ||
Give Your Gift For Choice | ||
</p> | ||
</div> | ||
<lord-icon | ||
style={{ | ||
height: "170px", | ||
width: "170px", | ||
}} | ||
src="https://cdn.lordicon.com/lgmqrevt.json" | ||
trigger="morph" | ||
stroke="bold" | ||
state="morph-open"></lord-icon> | ||
</div> | ||
</header> | ||
</> | ||
); | ||
} | ||
|
||
export default Header; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.