start matching cv theme to index page (#24)

* start matching theme on cv to index page

* remove references from cv experience
This commit is contained in:
Troy 2025-01-13 14:48:14 +00:00 committed by GitHub
parent 7e121e1e57
commit 9db394d5f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 82 additions and 81 deletions

View file

@ -43,50 +43,52 @@ import Prose from "@components/Prose.astro";
</div>
</section>
<section class="mt-16 animate-reveal opacity-0 [animation-delay:0.1s]">
<Prose>
<h2>About me</h2>
<p>
Hi, my name is Troy and Im a student 3D artist studying on a BA
(Hons) Game Arts and Design course in the UK.
</p>
<p>
In 2019 I began experimenting with Blender after having used various
2D art applications such as Adobe Photoshop for over 5 years. After
making this change, I realised that I have a huge interest in creating
3D graphics for video games and TV. At the moment I am working on
expanding my skillset to encompass other areas with a focus on
lighting and rendering techniques in relation to environment art.
</p>
<p>
My current portfolio of work can be found on my website at:
<a href="/projects">troylusty.com/projects</a>.
</p>
</Prose>
<h2 class="mb-16 break-words text-4xl font-semibold capitalize">
About me
</h2>
<p class="mb-8 text-lg">
Hi, my name is Troy and Im a student 3D artist studying on a BA (Hons)
Game Arts and Design course in the UK.
</p>
<p class="mb-8 text-lg">
In 2019 I began experimenting with Blender after having used various 2D
art applications such as Adobe Photoshop for over 5 years. After making
this change, I realised that I have a huge interest in creating 3D
graphics for video games and TV. At the moment I am working on expanding
my skillset to encompass other areas with a focus on lighting and
rendering techniques in relation to environment art.
</p>
<p class="mb-8 text-lg">
My current portfolio of work can be found on my website at:
<a
class="text-secondary underline decoration-tertiary decoration-wavy"
href="/projects">troylusty.com/projects</a
>.
</p>
</section>
<section class="mt-16 animate-reveal opacity-0 [animation-delay:0.2s]">
<Prose>
<h2>Education</h2>
<Education />
</Prose>
<h2 class="mb-16 break-words text-4xl font-semibold capitalize">
Education
</h2>
<Education />
</section>
<section class="mt-16 animate-reveal opacity-0 [animation-delay:0.3s]">
<Prose>
<h2>Skills</h2>
<p>
My specific chosen area of focus is design, lighting, and rendering
focusing on 3D environments within software such as Blender and Unreal
Engine. Using either real-time or offline rendering techniques. In
addition to this, I am also very interested in web development.
</p>
<Skills />
<ul><li>Full drivers licence for cars and motorbikes</li></ul>
</Prose>
<h2 class="mb-16 break-words text-4xl font-semibold capitalize">
Skills
</h2>
<p class="mb-8 text-lg">
My specific chosen area of focus is design, lighting, and rendering
focusing on 3D environments within software such as Blender and Unreal
Engine. Using either real-time or offline rendering techniques. In
addition to this, I am also very interested in web development.
</p>
<Skills />
</section>
<section class="mt-16 animate-reveal opacity-0 [animation-delay:0.4s]">
<Prose>
<h2>Experience</h2>
<Work />
</Prose>
<h2 class="mb-16 break-words text-4xl font-semibold capitalize">
Experience
</h2>
<Work />
</section>
</div>
</Layout>

View file

@ -42,7 +42,7 @@ const projects = allProjects
{
allProjects.length > HOME.HOMESETTINGS!.NUM_PROJECTS_ON_HOMEPAGE ? (
<a href="/projects">
<div class="mt-8 flex animate-reveal flex-row items-center gap-1 justify-self-center rounded-full bg-tertiary px-3 py-2 font-medium capitalize text-primary opacity-0 transition-colors duration-300 [animation-delay:0.1s] hover:bg-accent">
<div class="mt-8 flex animate-reveal flex-row items-center gap-1 justify-self-center rounded-full bg-tertiary px-3 py-2 font-medium capitalize text-primary opacity-0 transition-colors [animation-delay:0.1s] hover:bg-accent">
View all
</div>
</a>