24 lines
530 B
TypeScript
Executable File
24 lines
530 B
TypeScript
Executable File
'use client';
|
|
|
|
import Content from '@/components/content/page';
|
|
import Footer from '@/components/footer/footer';
|
|
import Header from '@/components/header/header';
|
|
import Link from 'next/link';
|
|
|
|
export default function HomePage() {
|
|
const product = 100;
|
|
return (
|
|
<>
|
|
<div className="w-[1920px] h-[1080px] mx-auto">
|
|
<Header />
|
|
<Content />
|
|
<Footer />
|
|
{/* <Link href="/upload">1111</Link>
|
|
<Link href={`/upload?product=${product}`} className="underline">
|
|
2222 {product}
|
|
</Link> */}
|
|
</div>
|
|
</>
|
|
);
|
|
}
|