Update src/app/register/page.tsx

This commit is contained in:
2026-05-13 15:07:25 +00:00
parent d07e51b84a
commit 0a36d568f0

View File

@@ -5,13 +5,14 @@ import ContactForm from '@/components/form/ContactForm';
export default function RegisterPage() {
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="Create Account"
description="Join our exclusive community."
tag="Onboarding"
buttonText="Register"
useInvertedBackground={false}
/>
</ThemeProvider>
);