2023-09-18 20:54:59 +00:00
|
|
|
import React, { Suspense } from "react";
|
2022-12-24 20:49:01 -05:00
|
|
|
import About from "./About.jsx";
|
|
|
|
import Projects from "./Projects.jsx";
|
2023-02-03 13:25:41 +00:00
|
|
|
//import Environments from "./Environments.jsx";
|
2023-09-18 20:54:59 +00:00
|
|
|
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"));
|
|
|
|
|
|
|
|
export default function Delta() {
|
|
|
|
return (
|
2023-09-18 20:54:59 +00:00
|
|
|
<ContentWrapper id="delta">
|
|
|
|
<About />
|
|
|
|
<Projects />
|
|
|
|
<Suspense>
|
2022-12-24 20:49:01 -05:00
|
|
|
<Skills />
|
|
|
|
<Social />
|
2023-09-18 20:54:59 +00:00
|
|
|
</Suspense>
|
|
|
|
</ContentWrapper>
|
2022-12-24 20:49:01 -05:00
|
|
|
);
|
|
|
|
}
|