From 1d176cfe1390eb8803741f511ec9efd4b31b97e7 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 21 Jun 2026 12:40:15 +0000 Subject: [PATCH 1/2] Update src/components/Layout.tsx --- src/components/Layout.tsx | 61 ++------------------------------------- 1 file changed, 3 insertions(+), 58 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 7c9358a..ed2d0ad 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -1,64 +1,9 @@ -import FooterMinimal from '@/components/sections/footer/FooterMinimal'; -import NavbarFloatingLogo from '@/components/ui/NavbarFloatingLogo'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; -import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; -import { Instagram, Linkedin, Twitter } from "lucide-react"; import { Outlet } from 'react-router-dom'; -import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { - const navItems = [ - { - "name": "Home", "href": "#home" - }, - { - "name": "Services", "href": "#services" - }, - { - "name": "Portfolio", "href": "#portfolio" - }, - { - "name": "Contact", "href": "#contact" - }, - { - "name": "About", "href": "#about" - }, - { - "name": "Metrics", "href": "#metrics" - }, - { - "name": "Testimonials", "href": "#testimonials" - } -]; - return ( - - - - - -
- -
- - - -
+
+ +
); } -- 2.49.1 From 94a49306ea074ed97176025b3429e7b03b7c51bc Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 21 Jun 2026 12:40:15 +0000 Subject: [PATCH 2/2] Update src/components/sections/hero/HeroExpand.tsx --- src/components/sections/hero/HeroExpand.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/sections/hero/HeroExpand.tsx b/src/components/sections/hero/HeroExpand.tsx index 51a9e9c..80eac64 100644 --- a/src/components/sections/hero/HeroExpand.tsx +++ b/src/components/sections/hero/HeroExpand.tsx @@ -1,10 +1,9 @@ interface HeroExpandProps { title: string; description: string; - onComplete?: () => void; } -export default function HeroExpand({ title, description, onComplete }: HeroExpandProps) { +export default function HeroExpand({ title, description }: HeroExpandProps) { return (
-- 2.49.1