From b8efef1a00c521d231ed0862b22374de3bd14d10 Mon Sep 17 00:00:00 2001 From: alexlebens Date: Fri, 23 Aug 2024 20:46:46 -0500 Subject: [PATCH] polishing pass --- .gitignore | 1 + Dockerfile | 2 +- astro.config.mjs | 1 - package.json | 2 +- src/components/CallToAction.astro | 1 - src/components/Footer.astro | 1 + src/components/Grid.astro | 3 -- src/components/MainHead.astro | 4 +-- src/components/Nav.astro | 10 +----- src/components/ThemeToggle.astro | 3 -- src/content/work/{nested => }/duvet-genius.md | 0 src/layouts/BaseLayout.astro | 31 ++++++++----------- src/pages/index.astro | 11 ------- src/pages/work/[...slug].astro | 3 -- src/styles/global.css | 9 ------ 15 files changed, 19 insertions(+), 63 deletions(-) rename src/content/work/{nested => }/duvet-genius.md (100%) diff --git a/.gitignore b/.gitignore index 79f89b1..39ed992 100644 --- a/.gitignore +++ b/.gitignore @@ -23,4 +23,5 @@ pnpm-debug.log* # jetbrains setting folder .idea/ +# vscode workspace site-profile.code-workspace \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 72a31fc..8de9790 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM node:20.16.0-alpine3.20 AS base -LABEL version="0.1.7" +LABEL version="0.2.0" LABEL description="Astro based website to use as a profile" ENV PNPM_HOME="/pnpm" diff --git a/astro.config.mjs b/astro.config.mjs index fc8f422..8eeb95c 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -2,7 +2,6 @@ import { defineConfig } from 'astro/config'; import node from "@astrojs/node"; -// https://astro.build/config export default defineConfig({ output: "hybrid", adapter: node({ diff --git a/package.json b/package.json index dc9e88a..331e51b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "site-profile", "type": "module", - "version": "0.1.7", + "version": "0.2.0", "scripts": { "dev": "astro dev", "start": "astro dev", diff --git a/src/components/CallToAction.astro b/src/components/CallToAction.astro index a1ca697..0e2f294 100644 --- a/src/components/CallToAction.astro +++ b/src/components/CallToAction.astro @@ -32,7 +32,6 @@ const { href } = Astro.props; } } - /* Overlay for hover effects. */ a::after { content: ''; position: absolute; diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 7d65d92..6f8f240 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -16,6 +16,7 @@ const currentYear = new Date().getFullYear(); LinkedIn

+