replace placeholder info with my own
This commit is contained in:
@@ -24,35 +24,41 @@ import Hero from '../components/Hero.astro';
|
||||
<h2 class="section-title">Background</h2>
|
||||
<div class="content">
|
||||
<p>
|
||||
Lorem ipsum dolor sit amet, <a href="https://astro.build/">Astro</a> makes people happy.
|
||||
Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Proin nibh nisl condimentum
|
||||
id venenatis a condimentum vitae. Dapibus ultrices in iaculis nunc. Arcu odio ut sem nulla
|
||||
pharetra diam sit amet. Diam quis enim lobortis scelerisque fermentum dui faucibus in ornare.
|
||||
</p>
|
||||
<p>
|
||||
Arcu dui vivamus arcu felis bibendum ut tristique et egestas. Eget gravida cum sociis
|
||||
natoque penatibus. Cras fermentum odio eu feugiat pretium nibh. Proin nibh nisl
|
||||
condimentum id venenatis. Porta nibh venenatis cras sed felis eget velit. Id diam vel
|
||||
quam elementum pulvinar etiam non.
|
||||
</p>
|
||||
<p>
|
||||
Ultrices tincidunt arcu non sodales neque sodales ut. Sed enim ut sem viverra aliquet
|
||||
eget sit amet. Lacus luctus accumsan tortor posuere ac ut consequat semper viverra.
|
||||
Viverra accumsan in nisl nisi scelerisque eu ultrices. In massa tempor nec feugiat nisl
|
||||
pretium fusce.
|
||||
Grew up exploring the outdoors just north of the Twin Cities. Now, my passions include tinkering with my homelab,
|
||||
camping adventures in my Jeep, and hitting the slopes or trails for skiing and hiking. I've also been fortunate
|
||||
enough to travel extensively, visiting nearly every continent, including Antarctica!
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
<section>
|
||||
<h2 class="section-title">Expierence</h2>
|
||||
<div class="content">
|
||||
<p>
|
||||
Proudly served 6 years in the US Air Force, gaining valuable experience in Cyber Operations and Reconnaissance
|
||||
while stationed in Japan, Korea, and Texas.
|
||||
</p>
|
||||
<p>
|
||||
Gained valuable experience working in the heart of Washington, D.C. for several years, including time at AWS.
|
||||
Relocated to Denver in late 2020 to enjoy the outdoor opportunities Colorado has to offer.
|
||||
</p>
|
||||
<p>
|
||||
Recently returned to my roots in Minnesota and eager to embrace new opportunities and challenges in my home state.
|
||||
</p>
|
||||
</div>
|
||||
</section>
|
||||
<section>
|
||||
<h2 class="section-title">Education</h2>
|
||||
<div class="content">
|
||||
<p>Corporis voluptates tenetur laudantium.</p>
|
||||
<p>Currently completing my B.S. in Cloud Computing at Western Governors University. Excited to graduate in 2025!</p>
|
||||
</div>
|
||||
</section>
|
||||
<section>
|
||||
<h2 class="section-title">Skills</h2>
|
||||
<h2 class="section-title">Certifications</h2>
|
||||
<div class="content">
|
||||
<p>officia unde omnis</p>
|
||||
<p>AWS DevOps Engineer</p>
|
||||
<p>Certified Kubernetes Administrator</p>
|
||||
<p>Certified Kubernetes Application Developer</p>
|
||||
<p>CompTIA Cloud+</p>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
@@ -18,7 +18,10 @@ const projects = (await getCollection('projects'))
|
||||
.slice(0, 4);
|
||||
---
|
||||
|
||||
<BaseLayout>
|
||||
<BaseLayout
|
||||
title="Home | Alex Lebens"
|
||||
description=""
|
||||
>
|
||||
<div class="stack gap-20 lg:gap-48">
|
||||
<div class="wrapper stack gap-8 lg:gap-20">
|
||||
<header class="hero">
|
||||
@@ -28,8 +31,8 @@ const projects = (await getCollection('projects'))
|
||||
align="start"
|
||||
>
|
||||
<div class="roles">
|
||||
<Pill><Icon icon="hard-drives" size="1.33em" /> Engineer</Pill>
|
||||
<Pill><Icon icon="code" size="1.33em" /> Developer</Pill>
|
||||
<Pill><Icon icon="microphone-stage" size="1.33em" /> Speaker</Pill>
|
||||
<Pill><Icon icon="pencil-line" size="1.33em" /> Writer</Pill>
|
||||
</div>
|
||||
</Hero>
|
||||
@@ -49,7 +52,7 @@ const projects = (await getCollection('projects'))
|
||||
<section class="section with-background with-cta">
|
||||
<header class="section-header stack gap-2 lg:gap-4">
|
||||
<h3>Selected Projects</h3>
|
||||
<p>Take a look below at some of my featured projects from the past few years.</p>
|
||||
<p>Take a look below at some of my projects from the past few years.</p>
|
||||
</header>
|
||||
|
||||
<div class="gallery">
|
||||
@@ -72,29 +75,7 @@ const projects = (await getCollection('projects'))
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section with-background bg-variant">
|
||||
<header class="section-header stack gap-2 lg:gap-4">
|
||||
<h3>Mentions</h3>
|
||||
<p>
|
||||
I have been fortunate enough to receive praise for my work in several publications. Take
|
||||
a look below to learn more.
|
||||
</p>
|
||||
</header>
|
||||
|
||||
<div class="gallery">
|
||||
<Grid variant="small">
|
||||
{
|
||||
['Medium', 'BuzzFeed', 'The Next Web', 'awwwards.', 'TechCrunch'].map((brand) => (
|
||||
<li class="mention-card">
|
||||
<p>{brand}</p>
|
||||
</li>
|
||||
))
|
||||
}
|
||||
</Grid>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<ContactCTA />
|
||||
</div>
|
||||
</BaseLayout>
|
||||
|
Reference in New Issue
Block a user