17 lines
385 B
Text
17 lines
385 B
Text
---
|
|
import About from "../components/About.astro"
|
|
import Jumbo from "../components/Jumbo.astro"
|
|
import Portfolio from "../components/Portfolio.astro"
|
|
import Layout from "../layouts/Layout.astro"
|
|
import "../styles/Home.css"
|
|
---
|
|
|
|
<Layout
|
|
page="Home"
|
|
title="Henry Hiles"
|
|
description="Full Stack Web Developer and Discord Bot Developer"
|
|
>
|
|
<Jumbo />
|
|
<Portfolio />
|
|
<About />
|
|
</Layout>
|