Merge version_2 into main #2

Merged
bender merged 3 commits from version_2 into main 2026-04-23 16:34:53 +00:00
3 changed files with 9 additions and 5 deletions

View File

@@ -22,7 +22,7 @@ export default function DirectoryPage() {
const filtered = filter === "All" ? tenants : tenants.filter((t) => t.category === filter);
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="none" cardStyle="solid" primaryButtonStyle="gradient" secondaryButtonStyle="solid" headingFontWeight="normal">
<ReactLenis root>
<div className="pt-24 pb-16 px-6 max-w-7xl mx-auto">
<h1 className="text-4xl font-bold mb-8">Village Tenant Directory</h1>
@@ -50,8 +50,8 @@ export default function DirectoryPage() {
</div>
<FooterMedia
logoText="Wolfin Village"
leftLink={{ text: "Home", href: "/" }}
rightLink={{ text: "Contact", href: "#contact" }}
videoSrc="https://videos.pexels.com/video-files/5969561/5969561-sd_506_960_25fps.mp4"
columns={[{ title: "Navigate", items: [{ label: "Home", href: "/" }, { label: "Contact", href: "#contact" }] }]}
/>
</ReactLenis>
</ThemeProvider>

View File

@@ -8,7 +8,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function EventsPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="none" cardStyle="solid" primaryButtonStyle="gradient" secondaryButtonStyle="solid" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleApple
navItems={[
@@ -25,10 +25,12 @@ export default function EventsPage() {
<ContactText
text="Want to host an event? Contact us to schedule space in the village square."
background={{ variant: "plain" }}
useInvertedBackground={false}
buttons={[{ text: "Contact Council", href: "#" }]}
/>
<FooterMedia
logoText="Wolfin Village"
videoSrc="https://videos.pexels.com/video-files/5969561/5969561-sd_506_960_25fps.mp4"
columns={[{ title: "Navigate", items: [{ label: "Home", href: "/" }] }]}
/>
</ReactLenis>

View File

@@ -8,7 +8,7 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function LeasingPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="none" cardStyle="solid" primaryButtonStyle="gradient" secondaryButtonStyle="solid" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleApple
navItems={[
@@ -24,6 +24,7 @@ export default function LeasingPage() {
<ContactSplitForm
title="Inquire About Properties"
description="Tell us your preferences and we will match you with the best available home in the village."
useInvertedBackground={false}
inputs={[
{ name: "name", type: "text", placeholder: "Full Name" },
{ name: "email", type: "email", placeholder: "Email Address" }
@@ -34,6 +35,7 @@ export default function LeasingPage() {
</div>
<FooterMedia
logoText="Wolfin Village"
videoSrc="https://videos.pexels.com/video-files/5969561/5969561-sd_506_960_25fps.mp4"
columns={[{ title: "Navigate", items: [{ label: "Home", href: "/" }] }]}
/>
</ReactLenis>