Merge version_2_1781527175937 into main #2

Merged
bender merged 1 commits from version_2_1781527175937 into main 2026-06-15 12:40:56 +00:00
10 changed files with 359 additions and 258 deletions

View File

@@ -5,15 +5,15 @@
:root {
/* @colorThemes/lightTheme/grayNavyBlue */
--background: #f5faff;
--background: #f8fafc;
--card: #ffffff;
--foreground: #001122;
--primary-cta: #15479c;
--primary-cta-text: #f5faff;
--foreground: #0f172a;
--primary-cta: #2563eb;
--primary-cta-text: #ffffff;
--secondary-cta: #ffffff;
--secondary-cta-text: #001122;
--accent: #a8cce8;
--background-accent: #7ba3cf;
--secondary-cta-text: #0f172a;
--accent: #dbeafe;
--background-accent: #bfdbfe;
/* @layout/border-radius/rounded */
--radius: 1rem;

View File

@@ -1,263 +1,36 @@
import AboutTextSplit from '@/components/sections/about/AboutTextSplit';
import ContactCta from '@/components/sections/contact/ContactCta';
import FaqSimple from '@/components/sections/faq/FaqSimple';
import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards';
import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento';
import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos';
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
// files directly. Non-block content (wrappers, non-inlinable sections) is
// preserved inline; extracted section blocks become <XSection/> refs.
export default function HomePage() {
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
import FeaturesSection from './HomePage/sections/Features';
import ProductSection from './HomePage/sections/Product';
import MetricsSection from './HomePage/sections/Metrics';
import TestimonialsSection from './HomePage/sections/Testimonials';
import FaqSection from './HomePage/sections/Faq';
import ContactSection from './HomePage/sections/Contact';
export default function HomePage(): React.JSX.Element {
return (
<>
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroCenteredLogos
avatarsSrc={[
"http://img.b2bpic.net/free-photo/beautiful-female-real-estate-agent-standing-house-entrance-smiling-woman-with-short-graying-hair-pink-suit-getting-ready-meet-customers-real-estate-business-work-concept_74855-22183.jpg",
"http://img.b2bpic.net/free-photo/modern-businesswoman_23-2148012909.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-man-working-as-real-estate-agent_23-2151065019.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-man-working-as-real-estate-agent_23-2151065008.jpg",
]}
avatarText="Trusted by 500+ landlords"
title="Manage Your Properties Effortlessly"
description="Organize tenants, track rent, and coordinate maintenance in one simple platform. Built for private landlords and small management teams who value their time."
primaryButton={{
text: "Start Free Trial",
href: "#contact",
}}
secondaryButton={{
text: "Learn More",
href: "#about",
}}
names={[
"Unit 1",
"Unit 2",
"Unit 3",
"Unit 4",
]}
imageSrc="http://img.b2bpic.net/free-photo/business-leader-trader-searching-new-investment-solution_482257-122592.jpg"
/>
</SectionErrorBoundary>
</div>
<>
<HeroSection />
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutTextSplit
title="Built for the Modern Landlord"
descriptions={[
"Stop juggling spreadsheets and scattered emails. Our platform brings all your rental property management tasks into one unified, secure dashboard designed for speed and clarity.",
"We empower small-scale administrators to scale their operations with ease, reducing administrative overhead and ensuring you always stay in control of your portfolio.",
]}
/>
</SectionErrorBoundary>
</div>
<AboutSection />
<div id="features" data-section="features">
<SectionErrorBoundary name="features">
<FeaturesDetailedCards
tag="Key Features"
title="Everything You Need to Scale"
description="Our comprehensive suite of tools makes property management feel simple, efficient, and professional."
items={[
{
title: "Automated Rent Tracking",
description: "Never miss a payment with automated reminders and instant status updates for every single one of your units.",
tags: [
"Finance",
"Automated",
],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-seniors-with-devices_23-2149046249.jpg",
},
{
title: "Maintenance Coordination",
description: "Streamline repairs by allowing tenants to submit requests digitally and managing your contractors from the same platform.",
tags: [
"Maintenance",
"Support",
],
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tablet-mockup-table_23-2148252111.jpg",
},
{
title: "Tenant Portal",
description: "Provide a professional experience with a dedicated portal for tenants to view documents, pay rent, and contact you.",
tags: [
"Communication",
"Digital",
],
imageSrc: "http://img.b2bpic.net/free-photo/trading-manager-working-with-stock-market-diagrams-looking-real-time-stattistics-trend-with-forex-exchange-profit-rate-analyzing-hedge-fund-index-global-money-investment-laptop_482257-50292.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
<FeaturesSection />
<div id="product" data-section="product">
<SectionErrorBoundary name="product">
<FeaturesRevealCardsBento
tag="Capabilities"
title="Power Your Property Workflow"
description="Harness the power of our bento-grid modules to manage every detail of your real estate business efficiently."
items={[
{
title: "Dashboard",
description: "Unified view.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-businessman-using-smartphone_171337-19947.jpg",
},
{
title: "Payments",
description: "Instant tracking.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/business-owner-analyzing-blank-mockup-display-smartphone_482257-87225.jpg",
},
{
title: "Tenants",
description: "Manage relationships.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/zoom-out-home-office-with-monitors-stock-market_482257-29630.jpg",
},
{
title: "Maintenance",
description: "Track repairs.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/business-man-holding-tablet-hand_23-2148308612.jpg",
},
{
title: "Documents",
description: "Cloud storage.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-smiley-people-with-tablet_23-2150225249.jpg",
},
{
title: "Analytics",
description: "Performance data.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/real-estate-housing-brokerage-concept_53876-120663.jpg",
},
{
title: "Reminders",
description: "Automatic alerts.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/focused-serious-professional-working-tablet_1262-20913.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
<ProductSection />
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsSimpleCards
tag="Proven Results"
title="Manage Smarter, Not Harder"
description="Join landlords who have significantly reduced their admin time using our platform."
metrics={[
{
value: "15h",
description: "Saved per month",
},
{
value: "98%",
description: "On-time rent",
},
{
value: "500+",
description: "Units managed",
},
]}
/>
</SectionErrorBoundary>
</div>
<MetricsSection />
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialOverlayCards
tag="Social Proof"
title="Trusted by Local Landlords"
description="See why property administrators across the region choose us."
testimonials={[
{
name: "Sarah Miller",
role: "Private Landlord",
company: "Miller Properties",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-successful-young-business-woman-standing-with-arms-folded-posing-co-working-coffee-shop-interior-looking-camera-smiling_74855-10036.jpg",
},
{
name: "Thomas Weber",
role: "Property Admin",
company: "Admin Pro",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-as-real-estate-agent_23-2151064886.jpg",
},
{
name: "Elena Schmidt",
role: "Investor",
company: "Schmidt Capital",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-person-intership_23-2149315641.jpg",
},
{
name: "David Koch",
role: "Landlord",
company: "Koch Rentals",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-as-real-estate-agent_23-2151064888.jpg",
},
{
name: "Lisa Fischer",
role: "Admin",
company: "Fischer Housing",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiley-business-woman-looking-camera_23-2148317308.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
<TestimonialsSection />
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqSimple
tag="Support"
title="Common Questions"
description="Answers to your most frequently asked questions about our property management tools."
items={[
{
question: "Is there a trial period?",
answer: "Yes, we offer a 14-day free trial.",
},
{
question: "Can I manage 2 units?",
answer: "Yes, perfect for 215 units.",
},
{
question: "Is it mobile-friendly?",
answer: "Yes, fully responsive.",
},
]}
/>
</SectionErrorBoundary>
</div>
<FaqSection />
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Get Started"
text="Ready to streamline your property management?"
primaryButton={{
text: "Start Free Trial",
href: "#",
}}
secondaryButton={{
text: "Contact Sales",
href: "#",
}}
/>
</SectionErrorBoundary>
</div>
<ContactSection />
</>
);
}

View File

@@ -0,0 +1,22 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "about" section.
import React from 'react';
import AboutTextSplit from '@/components/sections/about/AboutTextSplit';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function AboutSection(): React.JSX.Element {
return (
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutTextSplit
title="Built for the Modern Landlord"
descriptions={[
"Stop juggling spreadsheets and scattered emails. Our platform brings all your rental property management tasks into one unified, secure dashboard designed for speed and clarity.",
"We empower small-scale administrators to scale their operations with ease, reducing administrative overhead and ensuring you always stay in control of your portfolio.",
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,27 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "contact" section.
import React from 'react';
import ContactCta from '@/components/sections/contact/ContactCta';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ContactSection(): React.JSX.Element {
return (
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Get Started"
text="Ready to streamline your property management?"
primaryButton={{
text: "Start Free Trial",
href: "#",
}}
secondaryButton={{
text: "Contact Sales",
href: "#",
}}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,34 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "faq" section.
import React from 'react';
import FaqSimple from '@/components/sections/faq/FaqSimple';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FaqSection(): React.JSX.Element {
return (
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqSimple
tag="Support"
title="Common Questions"
description="Answers to your most frequently asked questions about our property management tools."
items={[
{
question: "Is there a trial period?",
answer: "Yes, we offer a 14-day free trial.",
},
{
question: "Can I manage 2 units?",
answer: "Yes, perfect for 215 units.",
},
{
question: "Is it mobile-friendly?",
answer: "Yes, fully responsive.",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,49 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "features" section.
import React from 'react';
import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FeaturesSection(): React.JSX.Element {
return (
<div id="features" data-section="features">
<SectionErrorBoundary name="features">
<FeaturesDetailedCards
tag="Key Features"
title="Everything You Need to Scale"
description="Our comprehensive suite of tools makes property management feel simple, efficient, and professional."
items={[
{
title: "Automated Rent Tracking",
description: "Never miss a payment with automated reminders and instant status updates for every single one of your units.",
tags: [
"Finance",
"Automated",
],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-seniors-with-devices_23-2149046249.jpg",
},
{
title: "Maintenance Coordination",
description: "Streamline repairs by allowing tenants to submit requests digitally and managing your contractors from the same platform.",
tags: [
"Maintenance",
"Support",
],
imageSrc: "http://img.b2bpic.net/free-photo/close-up-tablet-mockup-table_23-2148252111.jpg",
},
{
title: "Tenant Portal",
description: "Provide a professional experience with a dedicated portal for tenants to view documents, pay rent, and contact you.",
tags: [
"Communication",
"Digital",
],
imageSrc: "http://img.b2bpic.net/free-photo/trading-manager-working-with-stock-market-diagrams-looking-real-time-stattistics-trend-with-forex-exchange-profit-rate-analyzing-hedge-fund-index-global-money-investment-laptop_482257-50292.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,41 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "hero" section.
import React from 'react';
import HeroCenteredLogos from '@/components/sections/hero/HeroCenteredLogos';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HeroSection(): React.JSX.Element {
return (
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroCenteredLogos
avatarsSrc={[
"http://img.b2bpic.net/free-photo/beautiful-female-real-estate-agent-standing-house-entrance-smiling-woman-with-short-graying-hair-pink-suit-getting-ready-meet-customers-real-estate-business-work-concept_74855-22183.jpg",
"http://img.b2bpic.net/free-photo/modern-businesswoman_23-2148012909.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-man-working-as-real-estate-agent_23-2151065019.jpg",
"http://img.b2bpic.net/free-photo/medium-shot-man-working-as-real-estate-agent_23-2151065008.jpg",
]}
avatarText="Trusted by 500+ landlords"
title="Manage Your Properties Effortlessly"
description="Organize tenants, track rent, and coordinate maintenance in one simple platform. Built for private landlords and small management teams who value their time."
primaryButton={{
text: "Start Free Trial",
href: "#contact",
}}
secondaryButton={{
text: "Learn More",
href: "#about",
}}
names={[
"Unit 1",
"Unit 2",
"Unit 3",
"Unit 4",
]}
imageSrc="http://img.b2bpic.net/free-photo/business-leader-trader-searching-new-investment-solution_482257-122592.jpg"
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,34 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "metrics" section.
import React from 'react';
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function MetricsSection(): React.JSX.Element {
return (
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsSimpleCards
tag="Proven Results"
title="Manage Smarter, Not Harder"
description="Join landlords who have significantly reduced their admin time using our platform."
metrics={[
{
value: "15h",
description: "Saved per month",
},
{
value: "98%",
description: "On-time rent",
},
{
value: "500+",
description: "Units managed",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,64 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "product" section.
import React from 'react';
import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ProductSection(): React.JSX.Element {
return (
<div id="product" data-section="product">
<SectionErrorBoundary name="product">
<FeaturesRevealCardsBento
tag="Capabilities"
title="Power Your Property Workflow"
description="Harness the power of our bento-grid modules to manage every detail of your real estate business efficiently."
items={[
{
title: "Dashboard",
description: "Unified view.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-businessman-using-smartphone_171337-19947.jpg",
},
{
title: "Payments",
description: "Instant tracking.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/business-owner-analyzing-blank-mockup-display-smartphone_482257-87225.jpg",
},
{
title: "Tenants",
description: "Manage relationships.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/zoom-out-home-office-with-monitors-stock-market_482257-29630.jpg",
},
{
title: "Maintenance",
description: "Track repairs.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/business-man-holding-tablet-hand_23-2148308612.jpg",
},
{
title: "Documents",
description: "Cloud storage.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-smiley-people-with-tablet_23-2150225249.jpg",
},
{
title: "Analytics",
description: "Performance data.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/real-estate-housing-brokerage-concept_53876-120663.jpg",
},
{
title: "Reminders",
description: "Automatic alerts.",
href: "#",
imageSrc: "http://img.b2bpic.net/free-photo/focused-serious-professional-working-tablet_1262-20913.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}

View File

@@ -0,0 +1,57 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "testimonials" section.
import React from 'react';
import TestimonialOverlayCards from '@/components/sections/testimonial/TestimonialOverlayCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TestimonialsSection(): React.JSX.Element {
return (
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialOverlayCards
tag="Social Proof"
title="Trusted by Local Landlords"
description="See why property administrators across the region choose us."
testimonials={[
{
name: "Sarah Miller",
role: "Private Landlord",
company: "Miller Properties",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/happy-successful-young-business-woman-standing-with-arms-folded-posing-co-working-coffee-shop-interior-looking-camera-smiling_74855-10036.jpg",
},
{
name: "Thomas Weber",
role: "Property Admin",
company: "Admin Pro",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-as-real-estate-agent_23-2151064886.jpg",
},
{
name: "Elena Schmidt",
role: "Investor",
company: "Schmidt Capital",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-person-intership_23-2149315641.jpg",
},
{
name: "David Koch",
role: "Landlord",
company: "Koch Rentals",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-working-as-real-estate-agent_23-2151064888.jpg",
},
{
name: "Lisa Fischer",
role: "Admin",
company: "Fischer Housing",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiley-business-woman-looking-camera_23-2148317308.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}