Initialize authenticated webapp

This commit is contained in:
Matiss
2026-05-04 22:39:04 +01:00
parent 4a6177b891
commit d3ae3516c5
27 changed files with 2376 additions and 102 deletions

9
src/app/maps/page.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { auth } from "@clerk/nextjs/server";
import { BusinessMap } from "@/components/business-map";
export default async function MapsPage() {
await auth.protect();
return <BusinessMap />;
}