Initial commit - SaveTheMoment Atlas Basis-Setup
This commit is contained in:
34
app/dashboard/locations/page.tsx
Normal file
34
app/dashboard/locations/page.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
import { getServerSession } from 'next-auth';
|
||||
import { authOptions } from '@/lib/auth';
|
||||
import { prisma } from '@/lib/prisma';
|
||||
import LocationsManager from '@/components/LocationsManager';
|
||||
import DashboardSidebar from '@/components/DashboardSidebar';
|
||||
|
||||
export default async function LocationsPage() {
|
||||
const session = await getServerSession(authOptions);
|
||||
|
||||
const locations = await prisma.location.findMany({
|
||||
include: {
|
||||
_count: {
|
||||
select: {
|
||||
photoboxes: true,
|
||||
bookings: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
orderBy: {
|
||||
name: 'asc',
|
||||
},
|
||||
});
|
||||
|
||||
return (
|
||||
<div className="min-h-screen bg-gradient-to-br from-gray-900 via-gray-800 to-gray-900">
|
||||
<div className="flex">
|
||||
<DashboardSidebar user={session?.user} />
|
||||
<main className="flex-1 p-8">
|
||||
<LocationsManager locations={locations} user={session?.user} />
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user