Site Page

This commit is contained in:
headlesdev
2025-05-18 13:31:25 +02:00
parent 20dc406fd1
commit afd0b65f8c
3 changed files with 78 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
"use client"
import Sidebar from "@/components/Sidebar";
interface SitesPageProps {
username: string;
name: string;
siteId: string;
}
export default function SitesPage({ username, name, siteId }: SitesPageProps) {
return (
<Sidebar
username={username}
fullName={name}
breadcrumbPath={['/', 'Dashboard', 'Ressources', 'Sites', siteId]}
>
<main>
<div className="flex gap-4 items-center">
<div className="flex-1">
<h1 className="text-2xl font-bold">Site</h1>
<p className="text-sm opacity-70">
Manage your sites. Sites are real-world locations where you can
monitor your assets & add networks.
</p>
</div>
</div>
</main>
</Sidebar>
)
}