feat: add multi-user admin panel and featured partners toggle on home page

This commit is contained in:
AyrisAI
2026-05-17 13:48:05 +03:00
parent 36e98a3883
commit 0504f12f5b
29 changed files with 1110 additions and 182 deletions

View File

@@ -1,6 +1,4 @@
import { getServiceBySlug, getLocationBySlug, getProjectsByService, getSettings } from "@/app/actions";
import Navbar from "@/components/Navbar";
import Footer from "@/components/Footer";
import Image from "next/image";
import Link from "next/link";
import { ArrowRight, CheckCircle2 } from "lucide-react";
@@ -121,7 +119,6 @@ export default async function ServiceLocationPage({ params }: Props) {
return (
<main className="min-h-screen bg-[#f5f5f0] text-black pt-24">
<Navbar />
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(breadcrumbLd) }}
@@ -245,8 +242,6 @@ export default async function ServiceLocationPage({ params }: Props) {
</Link>
</div>
</section>
<Footer />
</main>
);
}