+
© {new Date().getFullYear()} UTKU KIRKAN ENGINEERING EXCELLENCE.
+
Gizlilik Politikası
KVKK Aydınlatma Metni
diff --git a/src/components/landing-page.tsx b/src/components/landing-page.tsx
index 1b1c02f..ddc1f6b 100644
--- a/src/components/landing-page.tsx
+++ b/src/components/landing-page.tsx
@@ -53,9 +53,9 @@ export function LandingPage({ projects }: { projects: Project[] }) {
transition={{ duration: 1 }}
>
Muğla • Mühendislik & Müteahhitlik
-
+
Modern
- Mühendislik
+ Mühendislik
Güçlü Yapılar
@@ -79,9 +79,9 @@ export function LandingPage({ projects }: { projects: Project[] }) {
-
+
Uzmanlık Alanlarımız
-
+
Mimari
Mükemmeliyet
@@ -140,7 +140,7 @@ export function LandingPage({ projects }: { projects: Project[] }) {
-
+
PROJELER
@@ -205,14 +205,14 @@ export function LandingPage({ projects }: { projects: Project[] }) {
sizes="(max-width: 1024px) 100vw, 50vw"
/>
-
-
10+
-
Yıllık Güven
+
Kurumsal Vizyon
-
+
Disiplinli
İnşaat Kültürü
@@ -234,7 +234,7 @@ export function LandingPage({ projects }: { projects: Project[] }) {
İletişim & Randevu
-
+
Projeyi
Konuşalım
diff --git a/src/components/navbar.tsx b/src/components/navbar.tsx
index 4a6b9f6..63cdcfa 100644
--- a/src/components/navbar.tsx
+++ b/src/components/navbar.tsx
@@ -1,21 +1,78 @@
"use client";
-import { motion } from "framer-motion";
-import { ArrowUpRight } from "lucide-react";
+import { motion, AnimatePresence } from "framer-motion";
+import { ArrowUpRight, Menu, X } from "lucide-react";
+import { useState } from "react";
+import Link from "next/link";
export function Navbar() {
+ const [isOpen, setIsOpen] = useState(false);
+
+ const navLinks = [
+ { name: "Hizmetler", href: "/#hizmetler" },
+ { name: "Projeler", href: "/projeler" },
+ { name: "Süreç", href: "/surec" },
+ { name: "Vizyon", href: "/#hakkimizda" },
+ ];
+
return (
-
+ <>
+
+
+ {/* Mobile Menu Overlay */}
+
+ {isOpen && (
+
+ {navLinks.map((link) => (
+ setIsOpen(false)}
+ className="text-4xl font-inter font-black uppercase tracking-tighter hover:text-[#795900] transition-colors"
+ >
+ {link.name}
+
+ ))}
+ setIsOpen(false)}
+ className="mt-4 text-4xl font-inter font-black uppercase tracking-tighter text-[#795900]"
+ >
+ İLETİŞİM
+
+
+ )}
+
+ >
);
}