You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Portfolio/pages/index.tsx

19 lines
517 B

import Page from "../components/Page";
import Navbar from "../components/Navbar";
import Landing from "../components/Landing";
import Projects from "../components/Projects";
import Contact from "../components/Contact";
import Footer from "../components/Footer";
export default function Home() {
return (
<Page description="A simple portfolio website to display my projects." title="Guus van Meerveld">
<Navbar />
<Landing />
<Projects />
<Contact />
<Footer />
</Page>
);
}