nile/src/pages/delta/Delta.jsx

34 lines
974 B
React
Raw Normal View History

import React, { Suspense } from "react";
import Box from "@mui/material/Box";
import Header from "./Header.jsx";
2022-12-24 20:49:01 -05:00
import Projects from "./Projects.jsx";
import Contact from "./Contact.jsx";
2023-02-03 13:25:41 +00:00
//import Environments from "./Environments.jsx";
import ContentWrapper from "@components/ContentWrapper.jsx";
2022-12-24 20:49:01 -05:00
const Skills = React.lazy(() => import("./Skills.jsx"));
const Social = React.lazy(() => import("./Social.jsx"));
const Education = React.lazy(() => import("./Education.jsx"));
const Experience = React.lazy(() => import("./Experience.jsx"));
const About = React.lazy(() => import("./About.jsx"));
2022-12-24 20:49:01 -05:00
export default function Delta() {
return (
<ContentWrapper id="delta">
<Header />
<Projects />
<Suspense>
<About />
<Box style={{ display: "flex", flexWrap: "wrap" }}>
<Education />
<Experience />
</Box>
2022-12-24 20:49:01 -05:00
<Skills />
<Social />
</Suspense>
<Contact />
</ContentWrapper>
2022-12-24 20:49:01 -05:00
);
}