'use client'; import { Button } from '@workspace/airo-ui/components/button'; import { useTranslations } from 'next-intl'; import { useRef } from 'react'; import OfferDialog, { OfferDialogRef } from './OfferDialog/index'; export default function HomeContent() { const dialogRef = useRef(null); const t = useTranslations('components.home'); return (
{/* 大标题 */}

{t('connect')}
{t('anytime')}
{t('anywhere')}

{/* 副标题 */}

AiroPort {t('serviceSlogan')}

{t('getSubscription')}

{/* 按钮 */}
); }