Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
fix: banner text
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiejaoude committed Aug 13, 2024
1 parent e3765b0 commit 8377276
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/components/Banner.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { XMarkIcon } from "@heroicons/react/20/solid";
import Link from "next/link";

export default function Banner() {
return (
Expand Down Expand Up @@ -29,23 +30,23 @@ export default function Banner() {
</div>
<div className="flex flex-wrap items-center gap-x-4 gap-y-2">
<p className="text-sm leading-6 text-gray-900">
<strong className="font-semibold">A big thank you to</strong>
<strong className="font-semibold">Attention</strong>
<svg
viewBox="0 0 2 2"
aria-hidden="true"
className="mx-2 inline h-0.5 w-0.5 fill-current"
>
<circle r={1} cx={1} cy={1} />
</svg>
Flagsmith for sponsoring this project
A big thank you to Flagsmith for sponsoring this project
</p>
<a
<Link
href="https://www.flagsmith.com"
target="_blank"
className="flex-none rounded-full bg-gray-900 px-3.5 py-1 text-sm font-semibold text-white shadow-sm hover:bg-gray-700 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-gray-900"
>
Visit their website <span aria-hidden="true">&rarr;</span>
</a>
</Link>
</div>
<div className="flex flex-1 justify-end">
{/* <button
Expand Down

0 comments on commit 8377276

Please sign in to comment.