Update src/app/login/page.tsx

This commit is contained in:
2026-05-26 12:26:16 +00:00
parent 0ee328f7d0
commit d9a729837c

View File

@@ -2,13 +2,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import { HelpCircle } from "lucide-react";
import HeroLogo from '@/components/sections/hero/HeroLogo';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { LogIn } from 'lucide-react';
export default function LandingPage() {
export default function LoginPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
@@ -23,129 +22,64 @@ export default function LandingPage() {
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "Packages",
id: "/packages",
},
{
name: "Contact",
id: "/contact",
},
{
name: "Client Login",
id: "/login",
},
]}
brandName="eXpand AD"
button={{
text: "Get a Quote",
href: "/contact",
}}
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Packages", id: "/packages" },
{ name: "Contact", id: "/contact" },
{ name: "Client Login", id: "/login" }
]}
brandName="eXpand AD"
button={{ text: "Get a Quote", href: "/contact" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroLogo
logoText="eXpand AD"
description="Welcome back! Access your personalized dashboard, project updates, and resources. Securely manage your campaigns."
buttons={[
{
text: "Login to Account",
href: "#login-form",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/two-factor-authentication-enabled_23-2152004089.jpg"
imageAlt="A person logging into a secure digital portal"
/>
</div>
<div id="login-hero" data-section="login-hero">
<HeroLogo
logoText="Client Login"
description="Access your personalized dashboard and manage your services."
buttons={[
{ text: "Go to Dashboard", href: "#" },
{ text: "Register Now", href: "#" }
]}
buttonAnimation="opacity"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EGGCvVCm4u8utjw85nJMComrpQ/uploaded-1779798279956-g5hmrms3.png"
imageAlt="Login page background image"
showDimOverlay={true}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Account Help"
title="Trouble Logging In?"
description="If you've forgotten your password, enter your email below to receive a reset link."
tagIcon={HelpCircle}
inputPlaceholder="Your email address"
buttonText="Send Reset Link"
termsText="By clicking Send Reset Link, you agree to our Privacy Policy."
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="eXpand AD"
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/#about",
},
{
label: "Services",
href: "/services",
},
{
label: "Packages",
href: "/packages",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Resources",
items: [
{
label: "Client Login",
href: "/login",
},
{
label: "FAQ",
href: "/contact#faq",
},
{
label: "Blog",
href: "/blog",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
copyrightText="© 2024 eXpand AD. All rights reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="eXpand AD"
columns={[
{
title: "Company", items: [
{ label: "About Us", href: "/#about" },
{ label: "Services", href: "/services" },
{ label: "Packages", href: "/packages" },
{ label: "Contact", href: "/contact" }
]
},
{
title: "Resources", items: [
{ label: "Client Login", href: "/login" },
{ label: "FAQ", href: "/contact#faq" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]
}
]}
copyrightText="© 2024 eXpand AD. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}