Skip to content

Commit

Permalink
Tweak footer link order
Browse files Browse the repository at this point in the history
  • Loading branch information
Pabl0cks committed Feb 4, 2025
1 parent 2d3b70c commit 8f266a6
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions packages/nextjs/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,9 @@ export const Footer = () => {
<ul className="menu menu-horizontal w-full">
<div className="flex flex-col sm:flex-row justify-center items-center gap-3 sm:gap-2 text-sm w-full">
<div className="text-center">
<a
href="/~https://github.com/buidlguidl/ctf.buidlguidl.com"
target="_blank"
rel="noreferrer"
className="link"
>
Fork me
</a>
<Link href="/faqs" className="link">
FAQs
</Link>
</div>
<span className="hidden sm:inline">·</span>
<div className="flex justify-center items-center gap-2">
Expand All @@ -43,9 +38,14 @@ export const Footer = () => {
</div>
<span className="hidden sm:inline">·</span>
<div className="text-center">
<Link href="/faqs" className="link">
FAQs
</Link>
<a
href="/~https://github.com/buidlguidl/ctf.buidlguidl.com"
target="_blank"
rel="noreferrer"
className="link"
>
Fork me
</a>
</div>
</div>
</ul>
Expand Down

0 comments on commit 8f266a6

Please sign in to comment.