Remove duplicate "Website under construction" message

This commit is contained in:
dertyp7
2024-01-13 18:38:45 +01:00
parent ed83fe708a
commit f4cd635abf

View File

@@ -6,9 +6,6 @@ import ScrollToTop from "@components/ScrollToTop";
export default function App() { export default function App() {
return ( return (
<div id="app"> <div id="app">
<div style={{ textAlign: "center" }}>
<h4>Website under construction 🚧👷</h4>
</div>
<Header /> <Header />
<About /> <About />
<div id="skills"> <div id="skills">
@@ -19,6 +16,9 @@ export default function App() {
<a href="#projects">Projects</a> <a href="#projects">Projects</a>
</h4> </h4>
</div> </div>
<div style={{ textAlign: "center" }}>
<h4>Website under construction 🚧👷</h4>
</div>
<ScrollToTop /> <ScrollToTop />
</div> </div>
); );