-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.astro
More file actions
40 lines (39 loc) · 904 Bytes
/
Copy pathindex.astro
File metadata and controls
40 lines (39 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
import Footer from "../components/footer.astro";
import Icon from "../components/icon.astro";
import Navbar from "../components/navbar.astro";
import Title from "../components/title.astro";
import icons from "../constants/icons.json";
import Layout from "../layouts/Layout.astro";
---
<Layout>
<div class="background"></div>
<Navbar />
<Title h1="Hello there." h2="My Name is Aiden" />
<div class="subarea">
<p>
I like to work with computers, and often like to develop various
things.
</p>
<p>Things I like to work with:</p>
<div class="icons">
{
icons.map((icon) => (
<div class="icon-container">
<Icon
class="icon"
name={icon.file}
desc={icon.alt}
color={icon.color}
/>
<p>{icon.alt}</p>
</div>
))
}
</div>
</div>
<Footer github="index.astro" />
</Layout>
<style>
@import "../styles/index.css";
</style>