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.
19 lines
489 B
19 lines
489 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";
|
|
|
|
const Home = () => (
|
|
<Page description="A simple portfolio website to display my projects." title="Projects">
|
|
<Navbar />
|
|
<Landing />
|
|
<Projects />
|
|
<Contact />
|
|
<Footer />
|
|
</Page>
|
|
);
|
|
|
|
export default Home;
|