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

@@ -12,7 +12,7 @@ import {
Camera,
Zap
} from "lucide-react";
import Footer from "@/components/Footer";
const processSteps = [
{ icon: Search, title: "Analiz", desc: "İşletmenizi ve hedef kitlenizi analiz ediyoruz." },
@@ -69,7 +69,7 @@ export default function ServicesClient({ services: initialServices, locations: i
</li>
))}
</ul>
{/* Subtle diagonal on hover */}
<div className="absolute top-0 right-0 w-16 h-16 opacity-0 group-hover:opacity-100 transition-opacity">
<div className="absolute top-0 right-0 w-px h-24 bg-black/5 rotate-[-45deg] origin-top-right" />
@@ -119,7 +119,7 @@ export default function ServicesClient({ services: initialServices, locations: i
<ul className="space-y-3">
{services.slice(0, 3).map((service) => (
<li key={service.id}>
<Link
<Link
href={`/services/${service.slug}/${loc.slug}`}
className="text-[11px] text-black/40 hover:text-primary transition-colors flex items-center justify-between group"
>
@@ -156,7 +156,6 @@ export default function ServicesClient({ services: initialServices, locations: i
</div>
</section>
<Footer />
</main>
);
}