Favicon, better screen responsive, starting experience layouts
All checks were successful
Build and Test - Staging / determine_version (pull_request) Successful in 6s
Build and Test - Staging / build_and_push (pull_request) Successful in 43s
Build and Test - Staging / test (pull_request) Successful in 2s
Build and Test - Staging / deploy_staging (pull_request) Successful in 3s

This commit is contained in:
2025-07-09 04:46:17 -07:00
parent 5b0829eac4
commit b342f7b1cb
12 changed files with 94 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

View File

@@ -33,18 +33,18 @@ const navItems = [
];
---
<header class="navbar lg:flex p-5 gap-5">
<header class="navbar md:flex p-5 gap-5">
<Astronav>
<div class="flex w-full justify-between">
<a href="/">
<Image src={logoTitle} alt="Logo Title" height="50" loading="eager"/>
</a>
<div class="block lg:hidden">
<div class="block md:hidden">
<MenuIcon class="w-4 h-4 text-gray-800"/>
</div>
</div>
<MenuItems class="hidden lg:flex">
<ul class="flex flex-col lg:flex-row lg:gap-5">
<MenuItems class="hidden md:flex">
<ul class="flex flex-col md:flex-row md:gap-5">
<li>
<a href="/">Home</a>
</li>

View File

@@ -9,6 +9,7 @@ const pageTitle = Astro.props.title ? `${Astro.props.title} - Corwin Perren` : "
<html lang="en">
<head>
<meta charset="UTF-8"/>
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>{pageTitle}</title>
</head>

View File

@@ -0,0 +1,6 @@
---
import BaseLayout from './BaseLayout.astro';
---
<BaseLayout>
<slot/>
</BaseLayout>

View File

@@ -0,0 +1,9 @@
---
import ExperienceLayout from '../../../layouts/ExperienceLayout.astro';
import {Image} from 'astro:assets';
import spring_2019_interns from "../../../assets/experience/spacex/avionics-test-engineering-intern/spring-2019-interns.jpg";
---
<ExperienceLayout>
<Image class="mx-auto block" src={spring_2019_interns} alt="spring-2019-interns.jpg" loading="eager"/>
</ExperienceLayout>

View File

@@ -0,0 +1,9 @@
---
import ExperienceLayout from '../../../layouts/ExperienceLayout.astro';
import {Image} from 'astro:assets';
import starlink_headquarters_selfie from "../../../assets/experience/spacex/hardware-test-engineer-ii/starlink_headquarters_selfie.jpg";
---
<ExperienceLayout>
<Image class="mx-auto block" src={starlink_headquarters_selfie} alt="starlink_headquarters_selfie" loading="eager"/>
</ExperienceLayout>

View File

View File

@@ -0,0 +1,2 @@
---
---

View File