diff --git a/src/pages/about.astro b/src/pages/about.astro index 34a6276..9c62a8c 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -1,5 +1,18 @@ --- +const pageTitle = "About Me"; +const identity = { + firstName: "Daniel", + country: "Narnia", + occupation: "Son of Adam", + hobbies: ["reading","homelabbing","making things"], +} + +const skills = ["HTML", "CSS", "JavaScript", "React", "Astro", "Writing Docs"]; + +const happy = true; +const finished = false; +const goal = 3; --- @@ -8,17 +21,34 @@ -
I am working through Astro's introductory tutorial. This is the second page on my first Astro website, and it's the first page I've added myself!
This site will update as I complete more of the tutorial, so keep checking back to see my progress and see how my journey is going! I'm already deviating from the tutorial a little bit, since I'm using GitHub Pages to host it instead of Netlify.
- +Here are a few facts about me:
+My skills are:
+I am happy to be learning Astro!
} + + {finished &&I finished this tutorial!
} + + {goal === 3 ?My goal is to finish in 3 days.
:My goal is not 3 days.
} +