import { For } from "solid-js"; import type { JSX } from "solid-js"; import { cn } from "~/lib/utils"; import Card from "~/components/ui/Card"; import PageContainer from "~/components/layout/PageContainer"; function CheckIcon() { return ( ); } function IndividualIcon() { return ( ); } function FamilyIcon() { return ( ); } interface PanelProps { title: string; description: string; items: string[]; icon: () => JSX.Element; } function Panel(props: PanelProps) { const Icon = props.icon; return (

{props.title}

{props.description}

); } interface ForUsersSectionProps { class?: string; } export default function ForUsersSection(props: ForUsersSectionProps) { return (

For Everyone

Whether you're protecting yourself or your whole family

); }