-
-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
32 additions
and
0 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,29 @@ | ||
import { ColorBGSVG } from '@public/hero' | ||
|
||
function About(): React.JSX.Element { | ||
return ( | ||
<div className="relative flex flex-col items-center justify-center "> | ||
<ColorBGSVG className="absolute -z-10 translate-y-[20rem]" /> | ||
|
||
<div className="pb-4 pt-14"> | ||
<h3 className="w-24 rounded-full border-[1px] border-[#FFFFFF] border-opacity-5 bg-white bg-opacity-5 p-2 text-center text-xs tracking-widest text-white md:text-sm"> | ||
PRICING | ||
</h3> | ||
</div> | ||
|
||
<h1 | ||
className={` text-brandBlue/90 w-[25rem] text-center text-4xl font-extralight md:w-auto md:text-6xl`} | ||
> | ||
<span className="self-center font-bold tracking-wide"> | ||
Transparent Pricing | ||
</span> | ||
</h1> | ||
<span className="text-brandBlue/80 mt-3 w-[20rem] text-center text-sm md:w-[35rem] md:text-xl"> | ||
Keyshade combines enterprise-grade capabilities with simplicity offering | ||
plans tailored to users of all levels. | ||
</span> | ||
</div> | ||
) | ||
} | ||
|
||
export default About |
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