From 139c14d543a4d7bebf5839826799b0211943eb1c Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 16 Apr 2026 20:37:05 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 484 +++++++++++------------------------------------ 1 file changed, 114 insertions(+), 370 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 08162eb..84fd531 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,378 +1,122 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; -import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery'; -import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; -import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; -import { Award, Box, CheckCircle, PenTool, Search } from "lucide-react"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; +import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; +import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen"; +import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; +import ProductCardThree from "@/components/sections/product/ProductCardThree"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; +import FaqDouble from "@/components/sections/faq/FaqDouble"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { Search, PenTool, Box, CheckCircle, Award } from "lucide-react"; -export default function LandingPage() { +const navItems = [ + { name: "Home", id: "#hero" }, + { name: "Projeler", id: "#projects" }, + { name: "İletişim", id: "#contact" } +]; + +export default function HomePage() { return ( - - - - -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- -
- - -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); } -- 2.49.1