Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nlkluth committed Dec 4, 2024
1 parent a8bcbd3 commit 2cbbfe6
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions website/src/components/SidebarLeadBanner.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
import React from "react";
import { FaArrowRight } from "react-icons/fa";

export default function SidebarLeadBanner() {
return (
<div style={{ padding: "1rem", borderTop: "1px solid #ddd" }}>
<p>
<strong>Custom Component:</strong> Add any content here!
<aside className="rounded-xl bg-[#f2f2f2] m-3 py-7 px-9 text-[#606770]">
<p className="text-base font-bold">
Like this project? You&apos;ll love working with us.
</p>
<a href="https://example.com" target="_blank" rel="noopener noreferrer">
Visit our site
<p className="text-sm">
Contact us to learn more about our full range of services and offerings.
</p>
<a
className="text-[#606770] text-sm font-bold flex items-center justify-end min-w-[100px] gap-1.5 underline underline-offset-4 decoration-2 text-[var(--ifm-color-primary)] hover:text-white"
href="/"
>
Learn More
<FaArrowRight height={40} width={40} scale={5} />
</a>
</div>
</aside>
);
}

0 comments on commit 2cbbfe6

Please sign in to comment.