diff --git a/src/app/page.tsx b/src/app/page.tsx index 9242015..f9a27dd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,28 +1,24 @@ -"use client"; +'use client'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -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"; - -const navItems = [ - { name: "Home", id: "hero" }, - { name: "Projeler", id: "projects" }, - { name: "İletişim", id: "contact" } -]; +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 HomePage() { + const navItems = [{ name: "Ana Sayfa", id: "hero" }, { name: "Hizmetler", id: "services" }, { name: "Projeler", id: "projects" }, { name: "İletişim", id: "contact" }]; + return (
); -} \ No newline at end of file +}