feat: implement core platform features including business directory, admin dashboard, authentication, and API infrastructure
Some checks failed
Build and Push App / build (push) Failing after 16m2s

This commit is contained in:
2026-04-18 22:10:19 +02:00
parent 6ec1a3ae84
commit 3e2063e4fa
89 changed files with 4405 additions and 967 deletions

View File

@@ -1,5 +1,5 @@
import { NextRequest, NextResponse } from 'next/server'
import prisma from '../../../../lib/prisma'
import prisma from '@/lib/prisma'
// PATCH /api/users/me — Update personal user profile
export async function PATCH(

View File

@@ -1,5 +1,5 @@
import { NextRequest, NextResponse } from 'next/server';
import prisma from '../../../../lib/prisma';
import prisma from '@/lib/prisma';
export async function GET(request: NextRequest) {
const { searchParams } = new URL(request.url);

View File

@@ -1,5 +1,5 @@
import { NextRequest, NextResponse } from 'next/server'
import prisma from '../../../lib/prisma'
import prisma from '@/lib/prisma'
// GET /api/users
export async function GET() {