From 7f35abe081e84ff4b401e6b4c16cf6514c10a291 Mon Sep 17 00:00:00 2001 From: Troy Date: Thu, 29 May 2025 21:17:38 +0100 Subject: [PATCH] fix: stop about experience images squashing --- src/pages/about/index.astro | 12 ++++++------ src/pages/robots.txt.ts | 4 +++- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/src/pages/about/index.astro b/src/pages/about/index.astro index c0f51c6..db84283 100644 --- a/src/pages/about/index.astro +++ b/src/pages/about/index.astro @@ -202,8 +202,8 @@ const sortedEducation = [...education].sort((a, b) => a.id - b.id); of 3D environments. Using either real-time or offline rendering techniques in software packages such as Blender and Unreal Engine. In addition to this I also have an interest in web development, graphic design, and cyber security - which make up a large part of my hobbies ...oh and motorbikes. If you're reading - this offline, my portfolio of work can be found on my website at troylusty.com/projects a.id - b.id);
-
+

Ready to make something cool?

@@ -251,7 +251,7 @@ const sortedEducation = [...education].sort((a, b) => a.id - b.id); {education.name}

@@ -291,7 +291,7 @@ const sortedEducation = [...education].sort((a, b) => a.id - b.id); {experience.name} diff --git a/src/pages/robots.txt.ts b/src/pages/robots.txt.ts index 582bc67..f20b3fe 100644 --- a/src/pages/robots.txt.ts +++ b/src/pages/robots.txt.ts @@ -2,9 +2,11 @@ import type { APIRoute } from "astro"; const getRobotsTxt = (sitemapURL: URL) => ` User-agent: * -Disallow: /cv +Disallow: /about Disallow: /tags Disallow: /tags/* +Disallow: /projects +Disallow: /posts Allow: / Sitemap: ${sitemapURL.href}