fenghuo/apps/web/app/page.tsx

24 lines
530 B
TypeScript
Raw Normal View History

2025-05-27 08:56:07 +08:00
'use client';
2025-05-28 08:23:14 +08:00
2025-11-18 11:21:51 +08:00
import Content from '@/components/content/page';
import Footer from '@/components/footer/footer';
import Header from '@/components/header/header';
import Link from 'next/link';
2025-06-05 22:51:44 +08:00
2025-05-28 08:23:14 +08:00
export default function HomePage() {
2025-11-18 11:21:51 +08:00
const product = 100;
2025-06-05 22:51:44 +08:00
return (
<>
2025-11-18 11:21:51 +08:00
<div className="w-[1920px] h-[1080px] mx-auto">
<Header />
2025-06-05 22:51:44 +08:00
<Content />
<Footer />
2025-11-18 11:21:51 +08:00
{/* <Link href="/upload">1111</Link>
<Link href={`/upload?product=${product}`} className="underline">
2222 {product}
</Link> */}
</div>
2025-06-05 22:51:44 +08:00
</>
);
2025-02-18 15:35:03 +08:00
}