From b6f79d69db3957c08a10bae3e041735199d82afd Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 17 Jun 2026 21:05:05 +0000 Subject: [PATCH 1/3] Bob AI: fix build error in src/components/Layout.tsx --- src/components/Layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index a2ee745..90ed708 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -43,6 +43,7 @@ export default function Layout() { Date: Wed, 17 Jun 2026 21:05:14 +0000 Subject: [PATCH 2/3] Update src/components/Layout.tsx --- src/components/Layout.tsx | 111 +++++++++++--------------------------- 1 file changed, 30 insertions(+), 81 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 90ed708..5c070fe 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,103 +7,52 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Anasayfa", - "href": "#hero" - }, - { - "name": "Hakkımızda", - "href": "#about" - }, - { - "name": "Hizmetler", - "href": "#services" - }, - { - "name": "İletişim", - "href": "#contact" - }, - { - "name": "Metrics", - "href": "#metrics" - }, - { - "name": "Testimonials", - "href": "#testimonials" - }, - { - "name": "Faq", - "href": "#faq" - } -]; + { name: "Anasayfa", href: "#hero" }, + { name: "Hakkımızda", href: "#about" }, + { name: "Hizmetler", href: "#services" }, + { name: "İletişim", href: "#contact" } + ]; return ( + logo="Uysal Oto" + logoImageSrc="https://storage.googleapis.com/webild/default/no-image.jpg?id=pleg9l" + ctaButton={{ + text: "Randevu Al", href: "#contact"}} + navItems={navItems} + />
+ ]} + copyright="© 2024 Uysal Oto Özel Servis. Tüm hakları saklıdır." + links={[ + { label: "Gizlilik Politikası", href: "#" }, + { label: "Kullanım Şartları", href: "#" }, + ]} + />
); -- 2.49.1 From bd16d8b49b4f94a0b2162f3af7a8c14c8ada427b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 17 Jun 2026 21:05:15 +0000 Subject: [PATCH 3/3] Update src/pages/HomePage.tsx --- src/pages/HomePage.tsx | 268 +++++++++++------------------------------ 1 file changed, 71 insertions(+), 197 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 3d6105c..484d247 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -5,7 +5,7 @@ import FeaturesMediaCarousel from '@/components/sections/features/FeaturesMediaC import HeroOverlayMarquee from '@/components/sections/hero/HeroOverlayMarquee'; import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards'; import TestimonialMarqueeOverlayCards from '@/components/sections/testimonial/TestimonialMarqueeOverlayCards'; -import { Award, CheckCircle, Clock, Shield, Users, Wrench, Zap } from "lucide-react"; +import { CheckCircle, Shield, Zap, Users, Award, Wrench, Clock } from "lucide-react"; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; export default function HomePage() { @@ -13,232 +13,106 @@ export default function HomePage() { <>
- +
- +
- +
- +
- +
- +
- +
-- 2.49.1