Update src/app/login/page.tsx

This commit is contained in:
2026-05-13 15:07:24 +00:00
parent 27f380f517
commit b5080c34f1

View File

@@ -5,13 +5,14 @@ import ContactForm from '@/components/form/ContactForm';
export default function LoginPage() {
return (
<ThemeProvider>
<NavbarStyleCentered navItems={[{name: "Home", id: "/"}, {name: "Products", id: "/products"}, {name: "About", id: "/about"}, {name: "Login", id: "/login"}, {name: "Cart", id: "/cart"}, {name: "Contact", id: "/contact"}]} brandName="LUXE" />
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<NavbarStyleCentered navItems={[{name: "Home", id: "/"}, {name: "Shop", id: "/shop"}, {name: "About", id: "/about"}, {name: "Login", id: "/login"}, {name: "Cart", id: "/cart"}, {name: "Contact", id: "/contact"}]} />
<ContactForm
title="Welcome Back"
description="Sign in to your luxury account."
tag="Authentication"
buttonText="Sign In"
useInvertedBackground={false}
/>
</ThemeProvider>
);