fixed components
This commit is contained in:
@@ -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 />
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user