diff --git a/src/components/Hero.astro b/src/components/Hero.astro index 8410f6b..3a64fbe 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -12,7 +12,7 @@ and on the side I manage online operations for a family run outdoor apparel business.

diff --git a/src/pages/about/index.astro b/src/pages/about/index.astro index db84283..af62c29 100644 --- a/src/pages/about/index.astro +++ b/src/pages/about/index.astro @@ -15,6 +15,7 @@ import webbossicon from "./webboss.png"; import uopicon from "./uop.png"; import ucsdicon from "./ucsd.png"; import sdcicon from "./sdc.png"; +import keviccicon from "./kevicc.png"; const projects = [ { @@ -77,23 +78,20 @@ const experience = [ image: nisaicon, role: "Promotional graphic design", date: "2022", - link: "https://www.nisalocally.co.uk", }, { id: 3, - name: "WebBoss", - image: webbossicon, - role: "Website mock-up templates (Work experience)", - date: "2019", - link: "https://webboss.io", - }, - { - id: 4, name: "Paignton Picture House Trust", image: pphicon, role: "Photogrammetrist (Volunteering)", date: "2023", - link: "https://paigntonpicturehouse.org", + }, + { + id: 4, + name: "WebBoss", + image: webbossicon, + role: "Website mock-up templates (Work experience)", + date: "2019", }, ]; const sortedExperience = [...experience].sort((a, b) => a.id - b.id); @@ -121,6 +119,14 @@ const education = [ "UAL Level 3 Extended Diploma in Creative Media Production and Technology", date: "2020 - 2022", }, + { + id: 4, + name: "King Edward VI Community College", + image: keviccicon, + course: + "Art & Design BTEC, Comp Sci A-level, 10 GCSEs, Creative iMedia Level 2", + date: "2014 - 2020", + }, ]; const sortedEducation = [...education].sort((a, b) => a.id - b.id); --- @@ -185,7 +191,7 @@ const sortedEducation = [...education].sort((a, b) => a.id - b.id); > Troy Lusty @@ -196,16 +202,17 @@ const sortedEducation = [...education].sort((a, b) => a.id - b.id);

I’m a Game Arts and Design degree student with a chosen area of focus on the design, lighting, and rendering 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 all make up a large part of my hobbies not including motorbikes. If you're - reading this offline, my portfolio of work can be found on my website at troylusty.com/projects.

@@ -213,7 +220,7 @@ const sortedEducation = [...education].sort((a, b) => a.id - b.id);

@@ -223,7 +230,7 @@ const sortedEducation = [...education].sort((a, b) => a.id - b.id); Do you think I'd be a good fit to help out on a project you're working on, or maybe just want to chat? Send me an email! @@ -232,7 +239,7 @@ const sortedEducation = [...education].sort((a, b) => a.id - b.id);

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

Full drivers licence (A & B)

+
+
+ +

Full drivers licence (A & B)

+
+
+ +

Lifesaving certification

+
@@ -285,24 +303,26 @@ const sortedEducation = [...education].sort((a, b) => a.id - b.id);
{ sortedExperience.map((experience) => ( -
+
- - {experience.name} - + {experience.name}

{experience.role}, - - {experience.name} - + {experience.link ? ( + + {experience.name} + + ) : ( + {experience.name} + )}

@@ -322,7 +342,7 @@ const sortedEducation = [...education].sort((a, b) => a.id - b.id);

    { sortedProjects.map((project) => ( -
  1. +
  2. <> diff --git a/src/pages/about/kevicc.png b/src/pages/about/kevicc.png new file mode 100644 index 0000000..1fa9c34 Binary files /dev/null and b/src/pages/about/kevicc.png differ diff --git a/src/styles/global.css b/src/styles/global.css index 52c6eca..bcd8ad1 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -53,3 +53,9 @@ text-decoration: var(--shiki-dark-text-decoration) !important; } } + +@layer utilities { + .underline { + @apply underline decoration-2 underline-offset-2; + } +}