Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update: cta button #12

Merged
merged 2 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,16 @@ export default function Home() {
<span className="">Read Blog</span>
</div>
</a>
<a href="#ticketSection" className="">
<div className="flex text-white font-bold hover:bg-white hover:text-black hover:border-white hover:ring-1 hover:ring-white focus:ring-1 focus:ring-white">
<PlusCircleIcon
height={30}
width={30}
className=""
/>{' '}
<span className="">Get Passes</span>
</div>
</a>
</div>
<div className="date hidden lg:block absolute top-80 right-0 rotate-90">
<p className="text-6xl text-primary font-bold tracking-[1.5rem]">
Expand Down
2 changes: 1 addition & 1 deletion components/TicketSection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function TicketSection() {
const [ticketBookingOpen, setTicketBookingOpen] = useState(false)
const [bookTicketType, setBookTicketType] = useState('')
return (
<section className="flex flex-col lg:flex-row lg:h-screen max-w-7xl mx-auto px-4 lg:px-8 py-10 justify-center items-center gap-4 rcs-back-2">
<section id="ticketSection" className="flex flex-col lg:flex-row lg:h-screen max-w-7xl mx-auto px-4 lg:px-8 py-10 justify-center items-center gap-4 rcs-back-2">
<TicketCardLPU setTicketType={setBookTicketType} setTicketBookingOpen={setTicketBookingOpen}/>
<TicketCardStudent setTicketType={setBookTicketType} setTicketBookingOpen={setTicketBookingOpen}/>
<TicketCardStandard setTicketType={setBookTicketType} setTicketBookingOpen={setTicketBookingOpen}/>
Expand Down
Loading