import { Card, CardContent } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { motion } from "framer-motion"; export default function HomePage() { return (
{/* Hero Section */}
Self Employed Association

Empowering independent professionals with AI tools, business support, and affordable resources to grow smarter.

Free for 1 month • Then just $5/month

{/* Features */}
{[ { title: "AI Assistant / Receptionist", desc: "24/7 AI support to handle customer inquiries and scheduling.", }, { title: "Website Development", desc: "Professional website creation and ongoing maintenance.", }, { title: "Lead Generation", desc: "Tools and strategies to help you attract and convert clients.", }, { title: "Educational AI Insights", desc: "AI-powered opinions on tax and investments (no guarantees).", }, ].map((feature, i) => (

{feature.title}

{feature.desc}

))}
{/* Pricing */}

Simple Pricing

Membership

$5/month

First month free. Cancel anytime.

{/* Disclaimer */}

Disclaimer: The association provides AI-based educational insights related to tax and investments. These are opinions only and do not constitute financial, legal, or tax advice. No guarantees are made regarding outcomes.

{/* Footer */}
); }