mirror of
https://github.com/Zippland/worth-calculator.git
synced 2026-03-02 16:22:48 +08:00
- 创建竖向广告弹窗组件(5:3比例,右上角可关闭) - 创建横向Banner广告组件(7:1比例,顶部展示) - 在首页集成两个广告组件 - 竖向广告延迟1秒后显示,避免影响首屏加载 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
20 lines
495 B
TypeScript
20 lines
495 B
TypeScript
import Calculator from '@/components/calculator';
|
|
import VerticalAd from '@/components/VerticalAd';
|
|
import HorizontalBanner from '@/components/HorizontalBanner';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
{/* 竖向广告弹窗 */}
|
|
<VerticalAd />
|
|
|
|
<main className="min-h-screen bg-gray-50 dark:bg-gray-900">
|
|
{/* 顶部横向 Banner */}
|
|
<HorizontalBanner />
|
|
|
|
{/* 主要内容 */}
|
|
<Calculator />
|
|
</main>
|
|
</>
|
|
);
|
|
} |