fixed components

This commit is contained in:
2025-10-02 02:10:07 +02:00
parent 696d0e61f1
commit d0227e4539
26 changed files with 603 additions and 271 deletions

View File

@@ -0,0 +1,20 @@
import Footer from "../components/Footer/footer";
import ContactMeForm from "../components/Forms/ContactMe/ContactMeForm";
import HomeNav from "../components/navbar/HomeNav";
import Drone from "../features/ads/Drone/Drone";
import Portfolio from "../features/ads/Portfolio/Portfolio";
import Home from "../pages/home/home";
export default function HomeLayout(){
return(
<>
{/* Example usage of imported components, adjust as needed */}
<HomeNav />
<Home />
<ContactMeForm />
<Portfolio />
<Drone />
<Footer />
</>
)
}