Skip to content

Commit

Permalink
feat: add header component
Browse files Browse the repository at this point in the history
  • Loading branch information
rezankv committed Jan 22, 2024
1 parent 801589a commit 6a0e6a0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/app/components/TicketsSection/Header.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import Image from "next/image";
import { RiCouponFill } from "react-icons/ri";

// ** assets
import ticketsSectionIcon from "@/assets/images/home/tickets-section-icon.png";

// ** components
import { Button } from "@/components/ui/Button";

export const Header = () => {
return (
<div className="flex flex-col items-center gap-2">
<Image alt="icon" src={ticketsSectionIcon} className="mb-3 size-16" />
<h3 className="text-2xl font-bold ">به جز همایش دیگه چی هست؟</h3>
<p className="text-center text-xl font-normal text-zinc-400">
فرانت چپتر فقط یه همایش نیست،
<br /> هدف ما مسافرته
</p>
<Button variant={"primary"} className=" mt-4 flex gap-2">
<RiCouponFill className="size-5" />
<span className="text-sm ">ورود و خرید بلیت</span>
</Button>
</div>
);
};

0 comments on commit 6a0e6a0

Please sign in to comment.