import { AppStoreApp } from "src/components/connections/SuggestedAppData"; import { Card, CardContent, CardHeader, CardTitle, } from "src/components/ui/card"; export function AboutAppCard({ appStoreApp }: { appStoreApp: AppStoreApp }) { return ( About the App

{appStoreApp.extendedDescription}

); }