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
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:
Binary file not shown.
|
After Width: | Height: | Size: 124 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.9 MiB |
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
6
src/layouts/ExperienceLayout.astro
Normal file
6
src/layouts/ExperienceLayout.astro
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
import BaseLayout from './BaseLayout.astro';
|
||||
---
|
||||
<BaseLayout>
|
||||
<slot/>
|
||||
</BaseLayout>
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
0
src/pages/hobby/body-modding.astro
Normal file
0
src/pages/hobby/body-modding.astro
Normal file
@@ -0,0 +1,2 @@
|
||||
---
|
||||
---
|
||||
|
||||
0
src/pages/hobby/nixos.astro
Normal file
0
src/pages/hobby/nixos.astro
Normal file
Reference in New Issue
Block a user