Add ScrollToTop component and skills section

This commit is contained in:
dertyp7
2024-01-13 18:16:12 +01:00
parent 171510ebfc
commit 0a9462095d
3 changed files with 101 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
import "@styles/App.scss";
import Header from "@components/Header";
import About from "@components/About";
import ScrollToTop from "@components/ScrollToTop";
export default function App() {
return (
@@ -10,6 +11,14 @@ export default function App() {
</div>
<Header />
<About />
<About />
<div id="skills">
<h2>
<a href="#skills">Skills</a>
</h2>
{/* Add your skills content here */}
</div>
<ScrollToTop />
</div>
);
}