Add src/app/auth/verify-email/page.tsx

This commit is contained in:
2026-06-07 05:58:08 +00:00
parent 2de0d1c00b
commit 6dc48d2ed7

View File

@@ -0,0 +1,63 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import Link from 'next/link';
export default function VerifyEmailPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="medium"
sizing="mediumLargeSizeLargeTitles"
background="fluid"
cardStyle="gradient-bordered"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "#home" },
{ name: "Features", id: "#features" },
{ name: "Jobs", id: "#jobs" },
{ name: "Companies", id: "#companies" },
{ name: "Pricing", id: "#pricing" },
{ name: "Reviews", id: "#testimonials" },
{ name: "FAQ", id: "#faq" },
]}
brandName="JobGeorgia"
button={{ text: "Get Started", href: "/auth/login" }}
/>
</div>
<div className="min-h-screen flex items-center justify-center py-12 px-4 sm:px-6 lg:px-8 bg-gradient-to-br from-background to-background-accent text-foreground">
<div className="max-w-md w-full space-y-8 p-10 rounded-xl shadow-2xl bg-card border border-primary-cta/20 text-center">
<h2 className="mt-6 text-3xl font-extrabold">
Verify your email address
</h2>
<p className="mt-2 text-sm text-foreground/70">
We've sent a verification email to your inbox. Please check your email and click the link to activate your account.
</p>
<p className="mt-4 text-sm text-foreground/70">
Didn't receive the email?{' '}
<Link href="#" className="font-medium text-primary-cta hover:text-primary-cta/80">
Resend verification email
</Link>
</p>
<div className="mt-6">
<Link href="/auth/login" className="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-primary-cta hover:bg-primary-cta/80 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-cta">
Back to Login
</Link>
</div>
</div>
</div>
</ReactLenis>
</ThemeProvider>
);
}