import { Card, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import { homepage } from "@/marketing/content/homepage"; export function Features() { return (

{homepage.features.title}

{homepage.features.description}

{homepage.features.list.map((feature, index) => ( {feature.title} {feature.description} ))}
); }