From f48fad51ce892871d67b5faac37f5b4e1582ae7f Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 3 Jul 2026 07:10:55 +0000 Subject: [PATCH] Bob AI: Remove the section with id 'navigation' and its unused impor --- src/components/Layout.tsx | 115 +++++++++++++++++++------------------- src/pages/HomePage.tsx | 27 ++++----- 2 files changed, 69 insertions(+), 73 deletions(-) diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 1fc7436..651d7b1 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -7,77 +7,80 @@ import { StyleProvider } from "@/components/ui/StyleProvider"; export default function Layout() { const navItems = [ - { - "name": "Services", - "href": "#services" - }, - { - "name": "Projects", - "href": "#projects" - }, - { - "name": "About", - "href": "#about" - }, - { - "name": "Contact", - "href": "#contact" - } -]; + { + "name": "Services", + "href": "#services" + }, + { + "name": "Projects", + "href": "#projects" + }, + { + "name": "About", + "href": "#about" + }, + { + "name": "Contact", + "href": "#contact" + } + ]; return ( - +
+ +
+ ]} + leftText="© 2024 Record Engineering Pty Ltd." + rightText="Northern Cape, South Africa" + />
); -} +} \ No newline at end of file diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 20f5956..d8daa58 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -16,22 +16,15 @@ import ContactSection from './HomePage/sections/Contact'; export default function HomePage(): React.JSX.Element { return ( -<> - - - - - - - - - - - - - - - + <> + + + + + + + + ); -} +} \ No newline at end of file