Prepared Nile v1

This commit is contained in:
Dunemask 2022-12-24 20:49:01 -05:00
parent ca9280f324
commit 0b19036190
145 changed files with 5541 additions and 1285 deletions

45
src/pages/delta/Delta.jsx Normal file
View file

@ -0,0 +1,45 @@
import React from "react";
import Box from "@mui/material/Box";
import About from "./About.jsx";
import Projects from "./Projects.jsx";
import Environments from "./Environments.jsx";
import Footer from "./Footer.jsx";
const Skills = React.lazy(() => import("./Skills.jsx"));
const Social = React.lazy(() => import("./Social.jsx"));
export default function Delta() {
return (
<Box id="delta">
<div style={{ position: "relative", display: "block" }}>
<div
style={{
position: "absolute",
display: "flex",
zIndex: -1,
opacity: 0.2,
marginTop: -40,
marginLeft: -20,
overflow: "hidden",
justifyContent: "center",
margin: "auto",
width: "100%",
}}
>
<img
src="/images/phx-mini.png"
style={{ minWidth: "260px", width: "50%", maxWidth: 512 }}
/>
</div>
</div>
<div style={{ margin: "0 auto", textAlign: "center", maxWidth: 1200 }}>
<About />
<Projects />
<Skills />
{/* <Environments /> */}
<Social />
</div>
<Footer />
</Box>
);
}