-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #68 from Vero-Ventures/feature/pricing
Updates to links and add pricing page
- Loading branch information
Showing
7 changed files
with
143 additions
and
35 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
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
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
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,58 @@ | ||
/** | ||
* v0 by Vercel. | ||
* @see https://v0.dev/t/XhNYwJIUqC2 | ||
* Documentation: https://v0.dev/docs#integrating-generated-code-into-your-nextjs-app | ||
*/ | ||
'use client'; | ||
|
||
import Link from 'next/link'; | ||
import Navbar from '@/components/ui/navbar'; | ||
import Footer from '@/components/ui/footer'; | ||
|
||
export default function Component() { | ||
const links = [ | ||
{ text: 'Home', url: '/' }, | ||
{ text: 'About', url: '/wip' }, | ||
{ text: 'Login / Signup', url: '/api/auth/login' }, | ||
]; | ||
|
||
return ( | ||
<section className="w-full h-dvh"> | ||
<Navbar links={links} /> | ||
<div className="flex items-center justify-center h-5/6"> | ||
<div className="container px-4 md:px-6"> | ||
<div className="mx-auto max-w-md space-y-6 text-center"> | ||
<div className="space-y-2"> | ||
<h2 className="text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl"> | ||
Simple Pricing | ||
</h2> | ||
<p className="text-gray-500 md:text-xl/relaxed lg:text-base/relaxed xl:text-xl/relaxed"> | ||
No hassle. No hidden fees. | ||
</p> | ||
</div> | ||
<div className="rounded-xl border bg-white p-6 shadow-sm"> | ||
<div className="space-y-4"> | ||
<div className="space-y-2"> | ||
<h3 className="text-2xl font-bold">6 months</h3> | ||
<p className="text-gray-500"> | ||
Advertise your opportunity across multiple sites | ||
</p> | ||
</div> | ||
<div className="flex items-baseline justify-center space-x-2"> | ||
<span className="text-4xl font-bold">$10</span> | ||
<span className="text-gray-500">/position</span> | ||
</div> | ||
<Link | ||
href="/payment" | ||
className="inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-white transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-gray-950 focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 bg-gray-900 text-gray-50 hover:bg-gray-900/90 h-10 px-4 py-2 w-full"> | ||
Get Started | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<Footer /> | ||
</section> | ||
); | ||
} |
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,52 @@ | ||
/** | ||
* v0 by Vercel. | ||
* @see https://v0.dev/t/fqAzrUdiAN9 | ||
* Documentation: https://v0.dev/docs#integrating-generated-code-into-your-nextjs-app | ||
*/ | ||
'use client'; | ||
|
||
import Navbar from '@/components/ui/navbar'; | ||
import Footer from '@/components/ui/footer'; | ||
|
||
export default function Component() { | ||
const links = [ | ||
{ text: 'Home', url: '/' }, | ||
{ text: 'Pricing', url: '/pricing' }, | ||
{ text: 'About', url: '/wip' }, | ||
{ text: 'Login / Signup', url: '/api/auth/login' }, | ||
]; | ||
return ( | ||
<div> | ||
<Navbar links={links} /> | ||
<div className="flex h-screen w-full flex-col items-center justify-center gap-4 bg-gray-100"> | ||
<WrenchIcon className="h-12 w-12 text-gray-500" /> | ||
<h1 className="text-2xl font-bold text-gray-800"> | ||
Page Under Construction | ||
</h1> | ||
<p className="max-w-md text-center text-gray-500"> | ||
This page is currently being worked on and will be available soon. | ||
Please check back later. | ||
</p> | ||
</div> | ||
<Footer /> | ||
</div> | ||
); | ||
} | ||
|
||
function WrenchIcon(props) { | ||
return ( | ||
<svg | ||
{...props} | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="24" | ||
height="24" | ||
viewBox="0 0 24 24" | ||
fill="none" | ||
stroke="currentColor" | ||
strokeWidth="2" | ||
strokeLinecap="round" | ||
strokeLinejoin="round"> | ||
<path d="M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z" /> | ||
</svg> | ||
); | ||
} |
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
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