Update src/app/login/page.tsx

This commit is contained in:
2026-03-25 14:41:38 +00:00
parent d32b9a7b1e
commit 3b0689554a

View File

@@ -27,35 +27,24 @@ export default function LandingPage() {
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "home",
href: "/",
name: "Home", id: "/"
},
{
name: "Products",
id: "products",
href: "/products",
name: "Products", id: "/products"
},
{
name: "Cart",
id: "cart",
href: "/cart",
name: "Cart", id: "/cart"
},
{
name: "Orders",
id: "orders",
href: "/orders",
name: "Orders", id: "/orders"
},
{
name: "Admin",
id: "admin",
href: "/admin",
},
name: "Admin", id: "/admin"
}
]}
brandName="ShopFusion"
button={{
text: "Login / Register",
href: "/login",
text: "Login / Register", href: "/login"
}}
animateOnLoad={true}
/>
@@ -68,16 +57,10 @@ export default function LandingPage() {
description="Access your personalized shopping experience, track orders, and manage your wishlist."
inputs={[
{
name: "email",
type: "email",
placeholder: "Email address",
required: true,
name: "email", type: "email", placeholder: "Email address", required: true,
},
{
name: "password",
type: "password",
placeholder: "Password",
required: true,
name: "password", type: "password", placeholder: "Password", required: true,
},
]}
imageSrc="http://img.b2bpic.net/free-photo/high-angle-family-spending-time-home_23-2150231687.jpg?_wi=6"
@@ -92,7 +75,7 @@ export default function LandingPage() {
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
variant: "plain"
}}
tag="New User?"
tagIcon={UserPlus}
@@ -100,9 +83,8 @@ export default function LandingPage() {
description="Register today to unlock exclusive deals, faster checkout, and a personalized shopping experience."
buttons={[
{
text: "Create Account",
href: "/register",
},
text: "Create Account", href: "/register"
}
]}
/>
</div>
@@ -111,56 +93,44 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "ShopFusion",
items: [
title: "ShopFusion", items: [
{
label: "About Us",
href: "/about",
label: "About Us", href: "/about"
},
{
label: "Careers",
href: "/careers",
label: "Careers", href: "/careers"
},
{
label: "Blog",
href: "/blog",
},
],
label: "Blog", href: "/blog"
}
]
},
{
title: "Customer Service",
items: [
title: "Customer Service", items: [
{
label: "Contact Us",
href: "/contact",
label: "Contact Us", href: "/contact"
},
{
label: "Returns",
href: "/returns",
label: "Returns", href: "/returns"
},
{
label: "Shipping",
href: "/shipping",
label: "Shipping", href: "/shipping"
},
{
label: "FAQ",
href: "/faq",
},
],
label: "FAQ", href: "/faq"
}
]
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "/privacy",
label: "Privacy Policy", href: "/privacy"
},
{
label: "Terms of Service",
href: "/terms",
},
],
},
label: "Terms of Service", href: "/terms"
}
]
}
]}
copyrightText="© 2024 ShopFusion. All rights reserved."
/>