Files
property-management-network/app/page.tsx
T
Leon SerfatyandClaude Opus 4.8 857b9a7811 Initial import: property management SaaS + security hardening + admin dashboard
Property Management Network — Next.js 16 (App Router), Better Auth,
Drizzle ORM over PostgreSQL, Stripe, OpenAI, Resend.

Includes:
- Security hardening: access-control/IDOR fixes, TLS-by-default DB layer,
  constant-time cron auth, strict security headers, atomic AI quota gating,
  HTML/email output encoding, demo-backdoor disabled in production.
- Superadmin dashboard at /admin (overview/MRR, server-paginated users with
  ban/impersonate/plan/delete, billing, platform activity + admin audit log,
  AI usage, system health) via the Better Auth admin plugin.
- Seed/migration utility scripts under scripts/.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-23 20:36:07 -04:00

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>
)
}