diff --git a/src/components/Header.astro b/src/components/Header.astro index 53e818d..64b0632 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -31,9 +31,9 @@ import { SITE } from "@consts"; {`/`} - + diff --git a/src/layouts/PageLayout.astro b/src/layouts/PageLayout.astro index 8501422..7bc6e78 100644 --- a/src/layouts/PageLayout.astro +++ b/src/layouts/PageLayout.astro @@ -19,7 +19,6 @@ const { title, description, redirect } = Astro.props;
-
- I'm a software engineer at the University of Canterbury, working on Tuihono UC | UC Online.
-
- I specialize in full-stack development. While my primary expertise is in software engineering, I also have a strong interest in cloud infrastructure and DevOps. Based in Christchurch, New Zealand
-
- Feel free to connect with me through any of the social media links at the bottom of this page!
-
- If you want to get in touch with me about something or just to say hi, - reach out on social media or send me an email. -
-If you've landed here, you're probably not in the right place.
+ ++ Recieved an email from this address? All emails sent to the @mkl.gg domain are forwarded to me. I may have provided you with a unique address, such as yourcompany@mkl.gg. These addresses are legitimate and help me organize and prioritize my emails while minimizing spam. +
diff --git a/src/pages/projects/[...slug].astro b/src/pages/projects/[...slug].astro deleted file mode 100644 index d62670a..0000000 --- a/src/pages/projects/[...slug].astro +++ /dev/null @@ -1,67 +0,0 @@ ---- -import { type CollectionEntry, getCollection } from "astro:content"; -import PageLayout from "@layouts/PageLayout.astro"; -import Container from "@components/Container.astro"; -import FormattedDate from "@components/FormattedDate.astro"; -import { readingTime } from "@lib/utils"; -import BackToPrev from "@components/BackToPrev.astro"; -import Link from "@components/Link.astro"; - -export async function getStaticPaths() { - const projects = (await getCollection("projects")) - .filter(post => !post.data.draft) - .sort((a, b) => b.data.date.valueOf() - a.data.date.valueOf()); - return projects.map((project) => ({ - params: { slug: project.slug }, - props: project, - })); -} -type Props = CollectionEntry<"projects">; - -const project = Astro.props; -const { Content } = await project.render(); ---- - -