import { Card, CardHeader, CardBody, Avatar } from '@heroui/react'; import { Scale, Folder, Check, Globe } from 'lucide-react'; import { useTranslations } from 'next-intl'; export default function MainTitle() { const t = useTranslations('Index'); const features = [ { title: t('oss_title'), detail: t('oss_detail'), icon: , }, { title: t('organize_title'), detail: t('organize_detail'), icon: , }, { title: t('usability_title'), detail: t('usability_detail'), icon: , }, { title: t('universal_title'), detail: t('universal_detail'), icon: , }, ]; return ( <>
{features.map((feature) => (

{feature.title}

{feature.detail}

))}
); }