feat: add analytics route and component for streaming analytics display

This commit is contained in:
2026-03-29 22:41:09 +07:00
parent b435638774
commit ab9b4f229d
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<template>
<div>
<h1 class="text-2xl font-bold mb-4">Analytics</h1>
<p class="text-gray-600 mb-8">Your streaming analytics will be displayed here.</p>
<div class="p-6 rounded-xl border border-gray-200">
<h2 class="text-lg font-semibold mb-4">Coming Soon</h2>
<p class="text-gray-600">We are working hard to bring you detailed analytics about your streams. Stay tuned!</p>
</div>
</div>
</template>

View File

@@ -117,6 +117,16 @@ const routes: RouteData[] = [
}, },
], ],
}, },
{
path: "analytics",
name: "analytics",
component: () => import("./analytics/Analytics.vue"),
meta: {
head: {
title: "Analytics - Holistream",
},
},
},
{ {
path: "notification", path: "notification",
name: "notification", name: "notification",