nile/src/pages/delta/Delta.jsx

22 lines
553 B
React
Raw Normal View History

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";
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 (
<ContentWrapper id="delta">
<About />
<Projects />
<Suspense>
2022-12-24 20:49:01 -05:00
<Skills />
<Social />
</Suspense>
</ContentWrapper>
2022-12-24 20:49:01 -05:00
);
}