diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 8a13323..104b23a 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,13 +1,13 @@ "use client"; +import Link from "next/link"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import HeroOverlay from "@/components/sections/hero/HeroOverlay"; import SplitAbout from "@/components/sections/about/SplitAbout"; import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen"; import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { Award, Users, Zap, Target, Lightbulb, CheckCircle, HandshakeIcon, Star, Heart, Rocket } from "lucide-react"; +import { Target, Users, Zap, Star } from "lucide-react"; export default function AboutPage() { return ( @@ -28,93 +28,93 @@ export default function AboutPage() { brandName="Webuild" navItems={[ { name: "Projekty", id: "projects" }, - { name: "O nás", id: "/about" }, + { name: "O nás", id: "about" }, { name: "Klientská zóna", id: "clientzone" }, - { name: "Kontakt", id: "/contact" }, + { name: "Kontakt", id: "contact" }, ]} button={{ - text: "Začít projekt", href: "/contact" + text: "Začít projekt", + href: "contact", }} /> -