-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
29 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from "react"; | ||
import { FaArrowRight } from "react-icons/fa"; | ||
|
||
const CalloutBanner = () => { | ||
return ( | ||
<div className="rounded-xl bg-[#202020] mb-24 w-[65%] m-auto py-6 px-8 border-solid border-[6px] border-[#8F4438] outline outline-[6px] outline-[#FF684F]"> | ||
<p className="m-0 text-[var(--ifm-color-primary)] text-xl font-bold"> | ||
Like this project? You'll love working with us. | ||
</p> | ||
<div className="flex flex-col sm:flex-row mt-2.5 items-end justify-between"> | ||
<p className="m-0 text-white text-sm mb-6 sm:mb-0"> | ||
Contact us to learn more about our full range of services and | ||
offerings. | ||
</p> | ||
<a | ||
className="text-white text-sm font-bold flex items-center justify-between 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> | ||
</div> | ||
); | ||
}; | ||
|
||
export default CalloutBanner; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters