Skip to content

Commit

Permalink
add short blurb
Browse files Browse the repository at this point in the history
  • Loading branch information
L23de committed Jan 4, 2022
1 parent c4aaafc commit a329ae1
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 2 deletions.
17 changes: 17 additions & 0 deletions src/components/InterestPane.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<script setup>
</script>

<template>
<div id="hobbies" class="pane">
<h2 class="header">My interests...</h2>
<!-- Brief resume -->
</div>
</template>


<style scoped lang="scss">
#hobbies {
background: $accent;
color: white;
}
</style>
23 changes: 21 additions & 2 deletions src/components/SplashPane.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
<template>
<div id="splash" class="pane">
<h1>👋 I'm Lester Huang</h1>
<p>Short blurb about me!</p>
<!-- Brief about me with a good picture -->
<h5>A lifelong learner 📖 with a desire for adventure 🗺️</h5>
<div id="splash-blurb">
<p>When I was a kid, I was very picky and scared to try new things (especially food), so to recoup all those lost experiences, I aspire to seek discomfort in every aspect of my life</p>
</div>
</div>
</template>

Expand All @@ -14,5 +16,22 @@
#splash {
background: #ffa86d;
min-height: 60vh;
display: flex;
flex-direction: column;
align-items: center;
#splash-blurb {
width: 30rem;
}
h1 {
margin-top: 15vh;
margin-bottom: 2rem;
}
h5 {
margin-top: 0;
margin-bottom: 1rem;
}
}
</style>

0 comments on commit a329ae1

Please sign in to comment.