Skip to content

Commit

Permalink
feat(web): add pricing page
Browse files Browse the repository at this point in the history
* added basic title
  • Loading branch information
HarshPatel5940 committed May 27, 2024
1 parent 5d094d5 commit e64026a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
29 changes: 29 additions & 0 deletions apps/web/src/app/(main)/pricing/page.tsx
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
3 changes: 3 additions & 0 deletions apps/web/src/components/shared/navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ function Navbar(): React.JSX.Element {
<li>
<Link href="/about">About</Link>
</li>
<li>
<Link href="/pricing">Pricing</Link>
</li>
<li>
<a
href="https://dev.to/keyshade"
Expand Down

0 comments on commit e64026a

Please sign in to comment.