Merge version_4 into main

Merge version_4 into main
This commit was merged in pull request #6.
This commit is contained in:
2026-03-25 13:43:33 +00:00
2 changed files with 14 additions and 6 deletions

View File

@@ -71,9 +71,6 @@ export default function ApplicationFormPage() {
}
];
const themeProviderProps = {
defaultButtonVariant: "hover-magnetic", defaultTextAnimation: "entrance-slide", borderRadius: "pill", contentWidth: "mediumSmall", sizing: "mediumLarge", background: "none", cardStyle: "glass-elevated", primaryButtonStyle: "primary-glow", secondaryButtonStyle: "radial-glow", headingFontWeight: "medium"};
const navbarProps = {
brandName: "Luxe Properties", navItems: [
{ name: "Properties", id: "properties" },
@@ -81,14 +78,25 @@ export default function ApplicationFormPage() {
{ name: "Services", id: "services" },
{ name: "Team", id: "team" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Application", href: "/application-form" },
{ name: "Application", id: "/application-form" },
{ name: "Contact", id: "contact" }
],
button: { text: "Schedule Viewing", href: "#contact" }
};
return (
<ThemeProvider {...themeProviderProps}>
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered {...navbarProps} />
</div>

View File

@@ -39,7 +39,7 @@ export default function LandingPage() {
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
{ name: "Admin Dashboard", href: "/admin" }
{ name: "Admin Dashboard", id: "/admin" }
]}
button={{ text: "Schedule Viewing", href: "#contact" }}
/>