aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/admin/AdminCard.tsx
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2024-12-21 21:35:35 +0000
committerMohamed Bassem <me@mbassem.com>2024-12-21 21:35:35 +0000
commit4bfb3b4250efa735aa265e924680a36a4b8bb1a7 (patch)
tree29b972fcc2ffb9542a6a5baf3359434dfb281104 /apps/web/components/dashboard/admin/AdminCard.tsx
parent22458873594fa1b157782afbbf1abca30259e7ab (diff)
downloadkarakeep-4bfb3b4250efa735aa265e924680a36a4b8bb1a7.tar.zst
feature: Add an admin notice about the usage of the legacy container images
Diffstat (limited to 'apps/web/components/dashboard/admin/AdminCard.tsx')
-rw-r--r--apps/web/components/dashboard/admin/AdminCard.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/web/components/dashboard/admin/AdminCard.tsx b/apps/web/components/dashboard/admin/AdminCard.tsx
new file mode 100644
index 00000000..3a52b5e5
--- /dev/null
+++ b/apps/web/components/dashboard/admin/AdminCard.tsx
@@ -0,0 +1,3 @@
+export function AdminCard({ children }: { children: React.ReactNode }) {
+ return <div className="rounded-md border bg-background p-4">{children}</div>;
+}