diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 66e715a..681dece 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,5 +1,5 @@ import FooterMinimal from '@/components/sections/footer/FooterMinimal'; -import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; +import NavbarCentered from '@/components/ui/NavbarCentered'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; import { Facebook, Instagram } from "lucide-react"; @@ -42,9 +42,8 @@ export default function Layout() { - { - const duplicatedLeft = [...leftItems, ...leftItems, ...leftItems, ...leftItems]; - const duplicatedRight = [...rightItems, ...rightItems, ...rightItems, ...rightItems]; - - return ( -
- -
-
-
-
-

{"Transforming Spaces, Elevating Lives"}

-
- - - - - -
-
-
-
- -
-
-
- {duplicatedLeft.map((item, index) => ( -
- -
- ))} -
-
- -
-
- {duplicatedRight.map((item, index) => ( -
- -
- ))} -
-
-
-
-
- ); -}; - -export default function HeroSection() { +export default function HeroSection(): React.JSX.Element { return (
- +
); }