From 550d3566eacacc2bc0123017ecc066227a303225 Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 28 Jul 2026 13:27:23 +0000 Subject: [PATCH] Deploy --- src/app/admin/page.tsx | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/app/admin/page.tsx diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx new file mode 100644 index 0000000..99d0ced --- /dev/null +++ b/src/app/admin/page.tsx @@ -0,0 +1,38 @@ +'use client' +import Link from 'next/link' +import { ExternalLink, Package, Settings, ShoppingCart, Users } from 'lucide-react' + +export default function AdminPortalPage() { + const adminUrl = process.env.NEXT_PUBLIC_MEDUSA_ADMIN_URL + ? process.env.NEXT_PUBLIC_MEDUSA_ADMIN_URL + '/app' + : null + + return ( +
+
+
+ +

Store Administration

+

+ Manage your products, orders, customers, and inventory through the Medusa dashboard. +

+ {adminUrl ? ( + + Open Medusa Dashboard + + + ) : ( +

Admin URL not configured. Set NEXT_PUBLIC_MEDUSA_ADMIN_URL in .env.local

+ )} +
+
Products
+
Orders
+
Customers
+
+
+ ← Back to Store +
+
+ ) +}