diff --git a/src/pages/about.astro b/src/pages/about.astro index 76049e2..35af202 100644 --- a/src/pages/about.astro +++ b/src/pages/about.astro @@ -1,5 +1,24 @@ --- - +const pageTitle = "About Me"; +const identity = { + firstName: "Thuan", + lastName: "Bui", + country: "Japan", + occupation: "Web Developer", + hobbies: ["coding", "running", "traveling"], +}; +const skills = [ + "HTML", + "CSS", + "Laravel", + "WordPress", + "JavaScript", + "Astro", + "React", +]; +const happy = true; +const finished = false; +const goal = 3; --- @@ -8,13 +27,13 @@ - About + {pageTitle} Home About Blog -

About Me

+

{pageTitle}

... and my new Astro site!

@@ -26,5 +45,36 @@ This site will update as I complete more of the tutorial, so keep checking back and see how my journey is going!

+

Here are a few facts 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.

+ ) + }