Skip to content

Commit

Permalink
refactor: buy ticket to register (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
basiima authored Apr 1, 2023
1 parent 48e571c commit 7f1f8a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/BuyTicketSection.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Link from "next/link";

export default function BuyTicketSection() {
const QUICKET_LINK = "https://qkt.io/pyconug";
const QUICKET_LINK = "https://qkt.io/pyconug2023";
return (
<section className="py-[60px] bg-[#f6f7fd]">
<div className="mx-auto max-w-screen-xl px-4 py-16 lg:flex lg:h-60 lg:items-center">
Expand All @@ -10,7 +10,7 @@ export default function BuyTicketSection() {
<p className="text-base p-0 font-medium">Tickets can be bought by following the link below.</p>
<div className="py-12">
<Link className="bg-[#ffe135] text-white font-bold py-3 px-10 m-2 border rounded-3xl" href={QUICKET_LINK}>
Buy a Ticket
Get Ticket
</Link>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions components/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function Navbar() {
label: "Contact",
},
];
const QUICKET_LINK = "https://qkt.io/pyconug";
const QUICKET_LINK = "https://qkt.io/pyconug2023";
return (
<nav className="sticky top-0 z-10 bg-white backdrop-filter backdrop-blur-lg bg-opacity-30 border-b border-gray-200">
<div className="max-w-5xl mx-auto px-5">
Expand All @@ -43,7 +43,7 @@ export default function Navbar() {
href={QUICKET_LINK}
>
{" "}
Buy Ticket
Get Ticket
</Link>
</div>
</div>
Expand Down

0 comments on commit 7f1f8a5

Please sign in to comment.