diff --git a/src/pages/about.astro b/src/pages/about.astro index 18fc2c0..2106db5 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -1,5 +1,28 @@ --- +const pageTitle = "About Me" +const identity = { + firstName: "Ruidy", + age: 30, + occupation: "Software Developer", + location: "Germany", + interests: ["Astro", "Web Development", "Learning in Public"], +} + +const skills = [ + "HTML", + "CSS", + "JavaScript", + "React", + "TypeScript", + "Node.js", + "Git", + "Astro", +] + +const happy = true +const finished = true +const goal = 3 --- @@ -8,16 +31,48 @@ -
I'm a web developer and I'm learning Astro.
This is my first website!
+ +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.
}