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 (
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
);
}
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 (