Updates to text to reflect that I finished my masters degree

This commit is contained in:
Ben Shiller 2025-08-28 22:03:32 -05:00
parent e221ea42cd
commit 8c6b501522
Signed by: shillerben
GPG Key ID: 7B4602B1FBF82986
4 changed files with 15 additions and 25 deletions

View File

@ -6,6 +6,6 @@
<div class="grow"></div>
<a href="/" class="px-4 text-white">Home</a>
<a href="/about" class="px-4 text-white">About Me</a>
<a href="/projects" class="px-4 text-white">Projects</a>
<a href="/resume" class="px-4 text-white">Resume</a>
</div>
</template>

View File

@ -16,9 +16,10 @@
</div>
<div class="bg-dark-blue p-4">
<div class="flex flex-col text-white mx-auto lg:w-1/2 content-center">
<p class="text-xl lg:text-2xl text-center py-2">
Welcome to my website! My name is Ben Shiller, and I'm a software devolper at Innovative Signal Analysis. I received my B.S. in Computer Engineering
from Texas A&M University in 2020, and I am currently working towards a M.S. in Computer Science at the University of Texas at Austin.
<p class="text-xl lg:text-2xl text-left py-2">
Welcome to my website! My name is Ben Shiller, and I'm a Software Engineer at Innovative Signal Analysis.
I received my M.S. in Computer Science from the University of Texas at Austin in 2025 and a
B.S. in Computer Engineering from Texas A&M University in 2020.
</p>
</div>
</div>

View File

@ -2,7 +2,7 @@
useHead({
title: 'Ben Shiller',
meta: [
{ name: 'description', content: "Ben Shiller's website" }
{ name: 'description', content: "Ben Shiller" }
],
})
const config = useAppConfig()
@ -11,28 +11,26 @@ const portrait_img = ref(`${config.cdnURL}/portrait.png`)
</script>
<template>
<div id="background" class="bg-black bg-cover bg-center bg-no-repeat bg-fixed" :style="bg_img_style"> <!--style="background-image: url(https://d3iqwa7wbnqnz1.cloudfront.net/homepage-bg2-1080p.png);">-->
<div id="background" class="bg-black bg-cover bg-center bg-no-repeat bg-fixed" :style="bg_img_style">
<div class="flex place-content-center h-screen w-screen">
<div class="flex flex-col lg:flex-row place-content-center gap-4 lg:gap-8">
<img :src="portrait_img" class="mx-auto lg:my-auto justify-self-center lg:justify-self-end w-64 h-64 lg:w-96 lg:h-96"/>
<div class="flex flex-col gap-4 place-content-center place-self-center lg:justify-self-start">
<p class="text-center text-white text-2xl lg:text-4xl w-64 lg:w-96">
Welcome to my website! This is where I experiment with fun stuff and show off my computer.
</p>
<p class="text-center text-light-grey text-lg lg:text-xl w-56 lg:w-80 lg:ml-8">
7800X3D, RTX 3080, 32GB DDR5, custom water loop, lots of RGB
<p class="text-center text-white text-xl lg:text-2xl w-64 lg:w-96">
Howdy! My name is Ben Shiller, and I am a Software Engineer passionate about building highly performant, resilient,
and maintainable software.
</p>
<div class="flex flex-row gap-4 place-content-start lg:place-content-center">
<a href="/projects" class="border-white border-4 h-8 w-28">
<div class="text-center">
<div class="text-white">Projects</div>
</div>
</a>
<a href="/about" class="border-white border-4 h-8 w-28">
<div class="text-center">
<div class="text-white">About Me</div>
</div>
</a>
<a href="/resume" class="border-white border-4 h-8 w-28">
<div class="text-center">
<div class="text-white">Resume</div>
</div>
</a>
</div>
</div>
</div>
@ -41,13 +39,4 @@ const portrait_img = ref(`${config.cdnURL}/portrait.png`)
</template>
<style scoped>
/* body {
background-image: url(/homepage-bg2.png);
background-image: url(bg_img);
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-color: black;
} */
</style>