fix: 提交短链服务、sentry监控

This commit is contained in:
2025-09-04 06:18:10 -07:00
parent 3c615237e7
commit 57173a0221
13 changed files with 142 additions and 67 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
'use client';
import { useTranslations } from 'next-intl';
import OfferDialog from './OfferDialog/index';
// import OfferDialog from './OfferDialog/index';
export default function HomeContent() {
const t = useTranslations('components.home');
@@ -17,7 +17,7 @@ export default function HomeContent() {
{t('anywhere')}
</h1>
{/* 副标题 */}
<div className='mb-12 text-left text-[17px] leading-normal text-white sm:mb-16 sm:text-center sm:font-bold'>
<div className='text-left text-[17px] leading-normal text-white sm:mb-16 sm:text-center sm:font-bold'>
<p className={'w-[255px] sm:w-full'}>
<span className='mr-2 text-white'>
Airo<sup className='text-[8px]'></sup>Port
@@ -27,7 +27,7 @@ export default function HomeContent() {
<p className={'mt-1 w-[255px] sm:mt-0 sm:w-full'}>{t('getSubscription')}</p>
</div>
{/* 按钮 */}
<OfferDialog />
{/*<OfferDialog />*/}
</div>
);
}