import Link from "next/link"; import { ArrowRight } from "lucide-react"; import { Hero } from "@/components/hero"; import { SectionTitle } from "@/components/section-title"; import { ServicesGrid } from "@/components/services-grid"; import { ProjectsGrid } from "@/components/projects-grid"; import { listProjects, listServices } from "@/lib/data"; export default async function Home() { const [services, projects] = await Promise.all([ listServices({ featured: true }), listProjects({ featured: true, limit: 6 }), ]); return ( <>
Tümünü gör

Projenizi konuşalım

İhtiyacınızı dinleyip size en uygun çözümü öneren bir ekip arıyorsanız, ilk görüşme bizden.

Ücretsiz keşif görüşmesi
); }