"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import Link from "next/link"; interface FooterProps { brandName?: string; navItems: Array<{ name: string; href: string; }>; } const Footer: React.FC = ({ brandName = "Nexsoft Australia", navItems }) => { return ( ); }; export default function HomePage() { const navItems = [ {name: "Home", id: "home", href: "/"}, {name: "Contact us", id: "contact", href: "/contact"} ]; const navbarProps = { brandName: "Nexsoft Australia", navItems: navItems, button: {text: "Get a Quote", href: "/contact"} }; return ( {/* Due to an empty sectionRegistry, no sections can be rendered on this page. This site will only display the Navbar and Footer. */}

Welcome to Nexsoft Australia