Sites Display test

This commit is contained in:
headlesdev
2025-05-18 12:06:21 +02:00
parent 668faa840f
commit 53c18d1fea
2 changed files with 20 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
import Sidebar from "@/components/Sidebar";
import { Plus } from "lucide-react";
import AddSite from "@/components/dialogues/AddSite";
import Sites from "@/components/cards/Sites";
interface SitesPageProps {
username: string;
@@ -29,6 +30,7 @@ export default function SitesPage({ username, name }: SitesPageProps) {
</div>
<AddSite />
<Sites id="" name="test" description="test" networks={[]} />
</main>
</Sidebar>
)