mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-29 16:14:43 +00:00
Site card renamed to sitepage
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
"use client"
|
||||
import { useRouter } from "next/navigation";
|
||||
import { Site } from "@/app/types";
|
||||
import { Site as SiteType } from "@/app/types";
|
||||
import { ChevronRight } from "lucide-react";
|
||||
|
||||
export default function Sites({ id, name, description, networks }: Site) {
|
||||
export default function Site({ id, name, description, networks }: SiteType) {
|
||||
const router = useRouter();
|
||||
return (
|
||||
<div className="relative group bg-base-100 border border-base-200 rounded-xl shadow-xl overflow-hidden h-48" style={{ display: 'block' }}>
|
||||
Reference in New Issue
Block a user