import { BadgeCheck, MapPin, ShieldCheck, Users } from "lucide-react"; import Link from "next/link"; import { Button } from "@/components/ui/button"; const features = [ { icon: Users, title: "Family and land, together", body: "People, relationships, and life events alongside property and chain-of-title — one documented story of where you come from.", }, { icon: BadgeCheck, title: "Sourced or it didn't happen", body: "Every fact can carry a citation back to the record it came from. Sources are first-class, reusable, and visible.", }, { icon: ShieldCheck, title: "Yours to keep", body: "Self-hosted and source-available. Living people protected by default. Open formats — export anytime, run it anywhere.", }, ]; export default function Home() { return (
{/* eslint-disable-next-line @next/next/no-img-element */} Provenance

Family · Land · Provenance

Where it came from matters.

Trace your family and your land in one place — every name, every parcel, every claim linked to the record it came from. Self-hosted, sourced, and yours to keep.

{/* eslint-disable-next-line @next/next/no-img-element */}
{features.map((f) => (

{f.title}

{f.body}

))}
); }