20 lines
555 B
Text
20 lines
555 B
Text
---
|
|
import Hero from '../components/content/index/Hero.astro'
|
|
import About from '../components/content/index/About.astro'
|
|
import Projects from '../components/content/index/Projects.astro'
|
|
import Experience from '../components/content/index/Experience.astro'
|
|
import Hobbies from '../components/content/index/Hobbies.astro'
|
|
|
|
import Base from '../layouts/Base.astro'
|
|
|
|
const title = 'Ethan Reece'
|
|
const description = ''
|
|
---
|
|
|
|
<Base title={title} description={description}>
|
|
<Hero />
|
|
<About />
|
|
<Projects />
|
|
<Experience />
|
|
<Hobbies />
|
|
</Base>
|