🐛 Fixed alignment on subtitle, and increased resolution on photo

main
Nichole Mattera 6 days ago
parent d363edb424
commit c4aa0e5c97
  1. 2
      data.json
  2. BIN
      public/images/nichole.webp
  3. 1
      src/css/main.css
  4. 2
      src/index.html

@ -5,6 +5,8 @@
"about": {
"image": "/images/nichole.webp",
"imageAlt": "Selfie of Nichole Mattera",
"imageHeight": "256px",
"imageWidth": "192px",
"description": "<p>I've been interested in and passionate about programming since I was a kid. I started tinkering on an old 486 laptop with Borland C++ modifying examples to make fake installation applications. Once I got my Sony PSP in high school, I created and released homebrew applications. With that experience, I got a job out of high school with PosiMotion.</p><p>Today, I still have a passion for programming with plenty of side projects outside of work, such as Pridful.li and my Nintendo Switch homebrew applications. I have also picked up a few more hobbies, such as rock climbing, hiking, and photography. In my free time, I also volunteer with Open Arms of Minnesota, helping to provide nourishing meals to critically ill individuals and their families.</p>"
},
"experiences": [

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

After

Width:  |  Height:  |  Size: 212 KiB

@ -213,6 +213,7 @@ section.about p:last-child {
header .subtitle {
margin: 0 0 10px;
text-align: center;
}
main {

@ -61,7 +61,7 @@
<div class="divider"></div>
<div class="content">
<img src="<%- about.image %>" alt="<%- about.imageAlt %>" />
<img src="<%- about.image %>" width="<%- about.imageWidth %>" height="<%- about.imageHeight %>" alt="<%- about.imageAlt %>" />
<div class="description">
<%- about.description %>

Loading…
Cancel
Save