49 lines
1.7 KiB
TypeScript
49 lines
1.7 KiB
TypeScript
import { Navbar } from "@/components/marketing/navbar"
|
|||
|
|
import { Hero } from "@/components/marketing/hero"
|
||
|
|
import { Marquee } from "@/components/marketing/marquee"
|
||
|
|
import { Problem } from "@/components/marketing/problem"
|
||
|
|
import { Features } from "@/components/marketing/features"
|
||
|
|
import { HowItWorks } from "@/components/marketing/how-it-works"
|
||
|
|
import { Integrations } from "@/components/marketing/integrations"
|
||
|
|
import { Testimonials } from "@/components/marketing/testimonials"
|
||
|
|
import { PricingSection } from "@/components/marketing/pricing-section"
|
||
|
|
import { FAQ } from "@/components/marketing/faq"
|
||
|
|
import { CtaBanner } from "@/components/marketing/cta-banner"
|
||
|
|
import { Footer } from "@/components/marketing/footer"
|
||
|
|
import { ScrollProgress } from "@/components/marketing/scroll-progress"
|
||
|
|
import { CursorGlow } from "@/components/marketing/cursor-glow"
|
||
|
|
import { SocialProofToast } from "@/components/marketing/social-proof-toast"
|
||
|
|
import { FloatingCTA } from "@/components/marketing/floating-cta"
|
||
|
|
|
||
|
|
export const metadata = {
|
||
|
|
title: "Property Management Network — Property management without the chaos",
|
||
|
|
description:
|
||
|
|
"Track rent, manage maintenance, monitor leases, and keep expenses organised. Built for independent landlords. Free to start.",
|
||
|
|
}
|
||
|
|
|
||
|
|
export default function HomePage() {
|
||
|
|
return (
|
||
|
|
<div className="bg-[#09090b] text-white">
|
||
|
|
{/* Global overlays */}
|
||
|
|
<ScrollProgress />
|
||
|
|
<CursorGlow />
|
||
|
|
<SocialProofToast />
|
||
|
|
<FloatingCTA />
|
||
|
|
|
||
|
|
{/* Page sections */}
|
||
|
|
<Navbar />
|
||
|
|
<Hero />
|
||
|
|
<Marquee />
|
||
|
|
<Problem />
|
||
|
|
<Features />
|
||
|
|
<HowItWorks />
|
||
|
|
<Integrations />
|
||
|
|
<Testimonials />
|
||
|
|
<PricingSection />
|
||
|
|
<FAQ />
|
||
|
|
<CtaBanner />
|
||
|
|
<Footer />
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|