diff --git a/apps/admin-web/src/layouts/AppShell.vue b/apps/admin-web/src/layouts/AppShell.vue
index cb23471..2b8f657 100644
--- a/apps/admin-web/src/layouts/AppShell.vue
+++ b/apps/admin-web/src/layouts/AppShell.vue
@@ -116,6 +116,7 @@ const navSections = computed(() => {
items: [
{ key: "/kol/manage", label: t("nav.kolManage") },
{ key: "/kol/dashboard", label: t("nav.kolDashboard") },
+ { key: "/kol/profile", label: t("nav.kolProfile") },
],
});
}
diff --git a/apps/admin-web/src/router/index.ts b/apps/admin-web/src/router/index.ts
index 976c158..5fc486b 100644
--- a/apps/admin-web/src/router/index.ts
+++ b/apps/admin-web/src/router/index.ts
@@ -166,6 +166,16 @@ const router = createRouter({
requiresKol: true,
},
},
+ {
+ path: "kol/profile",
+ name: "kol-profile",
+ component: () => import("@/views/KolProfileView.vue"),
+ meta: {
+ titleKey: "kol.profile.title",
+ navKey: "/kol/profile",
+ requiresKol: true,
+ },
+ },
{
path: "kol/marketplace",
name: "kol-marketplace",
diff --git a/apps/admin-web/src/views/KolProfileView.vue b/apps/admin-web/src/views/KolProfileView.vue
new file mode 100644
index 0000000..5e6a233
--- /dev/null
+++ b/apps/admin-web/src/views/KolProfileView.vue
@@ -0,0 +1,60 @@
+
+
+
+
+
+
+