24 lines
812 B
TypeScript
24 lines
812 B
TypeScript
import Footer from "../components/Footer/footer";
|
|
import ContactMeForm from "../components/Forms/ContactMe/ContactMeForm";
|
|
import HomeNav from "../components/navbar/HomeNav";
|
|
import Drone from "../components/ads/Drone/Drone";
|
|
import Portfolio from "../components/ads/Portfolio/Portfolio";
|
|
import Home from "../pages/home/home";
|
|
import { Outlet } from "react-router";
|
|
|
|
export default function HomeLayout(){
|
|
return(
|
|
<>
|
|
{/* Example usage of imported components, adjust as needed */}
|
|
<HomeNav />
|
|
<Home /> {/*page*/}
|
|
<Drone />
|
|
<Outlet />
|
|
<Portfolio />
|
|
<div style={{ margin: "6em auto", marginTop: "15em", maxWidth: "80vw" }}>
|
|
<ContactMeForm />
|
|
</div>
|
|
<Footer />
|
|
</>
|
|
)
|
|
} |