diff --git a/apps/web/app/page.tsx b/apps/web/app/page.tsx
index 99398f2..d8fb74e 100644
--- a/apps/web/app/page.tsx
+++ b/apps/web/app/page.tsx
@@ -1,5 +1,15 @@
'use client';
+import Content from "@/components/content/page";
+import Footer from "@/components/footer/footer";
+import Header from "@/components/header/header";
+
export default function HomePage() {
- return <>sss>;
+ return (
+ <>
+
+
+
+ >
+ );
}
diff --git a/apps/web/components/content/page.tsx b/apps/web/components/content/page.tsx
new file mode 100644
index 0000000..26ca906
--- /dev/null
+++ b/apps/web/components/content/page.tsx
@@ -0,0 +1,14 @@
+import React from 'react';
+
+const Content: React.FC = () => {
+ return (
+
+ );
+};
+
+export default Content;
\ No newline at end of file
diff --git a/apps/web/components/footer/footer.tsx b/apps/web/components/footer/footer.tsx
new file mode 100644
index 0000000..a7dc1f4
--- /dev/null
+++ b/apps/web/components/footer/footer.tsx
@@ -0,0 +1,51 @@
+import React from 'react';
+
+const Footer: React.FC = () => {
+ return (
+
+ {/* 主标题 */}
+
+
+ {/* 版权声明 */}
+
+
+ 免责声明:免责条款的提出必须是明示的,不允许以默示方式作出,也不允许法官推定免责条款的存在。
+
+
+ 版权所有:Copyright©2016-2019 包图网ibaotu.com 版权所有
+
+
+
+ {/* 导航链接 */}
+
+
+ );
+};
+
+export default Footer;
diff --git a/apps/web/components/header/header.tsx b/apps/web/components/header/header.tsx
new file mode 100644
index 0000000..7c15d66
--- /dev/null
+++ b/apps/web/components/header/header.tsx
@@ -0,0 +1,16 @@
+import React from 'react';
+
+const Header: React.FC = () => {
+ return (
+
+ );
+};
+
+export default Header;
diff --git a/apps/web/public/footer.png b/apps/web/public/footer.png
new file mode 100644
index 0000000..75a8636
Binary files /dev/null and b/apps/web/public/footer.png differ
diff --git a/apps/web/public/header.png b/apps/web/public/header.png
new file mode 100644
index 0000000..75a8636
Binary files /dev/null and b/apps/web/public/header.png differ