import FooterMinimal from '@/components/sections/footer/FooterMinimal'; import NavbarDropdown from '@/components/ui/NavbarDropdown'; import { Facebook, Instagram, Twitter } from "lucide-react"; import { Outlet } from 'react-router-dom'; export default function Layout() { const navItems = [ { "name": "About", "href": "#about" }, { "name": "Menu", "href": "#menu" }, { "name": "Testimonials", "href": "#testimonials" }, { "name": "Contact", "href": "#contact" }, { "name": "Hero", "href": "#hero" }, { "name": "Features", "href": "#features" }, { "name": "Metrics", "href": "#metrics" } ]; return ( <>
); }