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 @@ - Astro + {pageTitle} + Home About Blog -

About me

+

{pageTitle}

... and my new website!

I'm a web developer and I'm learning Astro.

This is my first website!

+ +

A few things about me:

+ + +

My skills are:

+ + + {happy &&

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.

} diff --git a/src/pages/blog.astro b/src/pages/blog.astro index f294ac6..24d2b51 100644 --- a/src/pages/blog.astro +++ b/src/pages/blog.astro @@ -1,4 +1,5 @@ --- +const pageTitle = "Blog posts" --- @@ -8,7 +9,7 @@ - Astro + {pageTitle} Home @@ -17,7 +18,7 @@ -

Blog posts

+

{pageTitle}

This is a list of my blog posts.