2025-05-27 08:56:07 +08:00
|
|
|
'use client';
|
2025-05-28 08:23:14 +08:00
|
|
|
|
2025-06-05 22:51:44 +08:00
|
|
|
import Content from "@/components/content/page";
|
|
|
|
import Footer from "@/components/footer/footer";
|
|
|
|
import Header from "@/components/header/header";
|
2025-06-10 15:12:33 +08:00
|
|
|
|
2025-06-05 22:51:44 +08:00
|
|
|
|
2025-05-28 08:23:14 +08:00
|
|
|
export default function HomePage() {
|
2025-06-05 22:51:44 +08:00
|
|
|
return (
|
|
|
|
<>
|
2025-06-11 09:55:47 +08:00
|
|
|
<div className="w-[1920px] h-[1080px] mx-auto">
|
2025-06-05 22:51:44 +08:00
|
|
|
<Header />
|
|
|
|
<Content />
|
|
|
|
<Footer />
|
2025-06-11 09:55:47 +08:00
|
|
|
</div>
|
2025-06-05 22:51:44 +08:00
|
|
|
</>
|
|
|
|
);
|
2025-02-18 15:35:03 +08:00
|
|
|
}
|