diff --git a/public/entry/bg.jpg b/public/entry/bg.jpg
new file mode 100644
index 0000000..49b206a
Binary files /dev/null and b/public/entry/bg.jpg differ
diff --git a/public/entry/claim_btn.png b/public/entry/claim_btn.png
new file mode 100644
index 0000000..828f69b
Binary files /dev/null and b/public/entry/claim_btn.png differ
diff --git a/public/entry/content.png b/public/entry/content.png
new file mode 100644
index 0000000..41d13b0
Binary files /dev/null and b/public/entry/content.png differ
diff --git a/public/entry/redeem_btn.png b/public/entry/redeem_btn.png
new file mode 100644
index 0000000..d16ede4
Binary files /dev/null and b/public/entry/redeem_btn.png differ
diff --git a/public/entry/rule_btn.png b/public/entry/rule_btn.png
new file mode 100644
index 0000000..0c93663
Binary files /dev/null and b/public/entry/rule_btn.png differ
diff --git a/src/pages/entry/index.vue b/src/pages/entry/index.vue
new file mode 100644
index 0000000..980b36c
--- /dev/null
+++ b/src/pages/entry/index.vue
@@ -0,0 +1,43 @@
+
+
+
+

+
+
+
+
+
+
+
+
+
diff --git a/src/router/index.ts b/src/router/index.ts
index 1ff5995..9ffb0d4 100644
--- a/src/router/index.ts
+++ b/src/router/index.ts
@@ -4,6 +4,15 @@ import { createRouter, createWebHistory, type RouteRecordRaw } from 'vue-router'
const routes: Array = [
{
path: '/',
+ name: 'Entry',
+ component: () => import('../pages/entry/index.vue'),
+ meta: {
+ title: '宁福您彩 活动入口'
+ }
+ },
+ {
+ path: '/claim',
+ alias: ['/home'],
name: 'Home',
component: () => import('../pages/home/index.vue'),
meta: {
@@ -27,4 +36,4 @@ router.beforeEach((to, from, next) => {
next()
})
-export default router
\ No newline at end of file
+export default router