troylusty.com/src/pages/cv.astro

88 lines
3.2 KiB
Text
Raw Normal View History

2024-12-23 21:18:55 +00:00
---
import Layout from "@layouts/Layout.astro";
import { CV } from "@consts";
import Work from "@components/Work.astro";
import Education from "@components/Education.astro";
import Skills from "@components/Skills.astro";
import { Icon } from "astro-icon/components";
import Link from "@components/Link.astro";
---
<Layout title={CV.TITLE} description={CV.DESCRIPTION}>
2025-01-17 22:16:14 +00:00
<section>
<div
class="flex flex-col items-start justify-between gap-6 md:flex-row md:items-center"
>
2025-01-23 01:22:29 +00:00
<h1 class="animate-reveal text-2xl font-semibold break-words opacity-0">
2025-01-17 22:16:14 +00:00
Troy Lusty
</h1>
2024-12-23 21:18:55 +00:00
<div
2025-01-23 01:22:29 +00:00
class="text-tertiary mt-4 flex flex-col items-start gap-2 md:flex-row"
2024-12-23 21:18:55 +00:00
>
2025-01-23 01:22:29 +00:00
<div class="animate-reveal flex items-center gap-2 opacity-0">
2025-01-17 22:16:14 +00:00
<div
2025-01-23 01:22:29 +00:00
class="text-tertiary hover:text-accent flex flex-row items-center gap-2 transition-colors"
2025-01-17 22:16:14 +00:00
>
<Icon name="mdi:email" />
<Link href="mailto:hello@troylusty.com">
<p>hello@troylusty.com</p>
</Link>
</div>
<div
2025-01-23 01:22:29 +00:00
class="text-tertiary hover:text-accent flex flex-row items-center gap-2 transition-colors"
2025-01-17 22:16:14 +00:00
>
<Icon name="mdi:web" />
<Link href="/">
<p>troylusty.com</p>
</Link>
2025-01-06 15:37:15 +00:00
</div>
2024-12-23 21:18:55 +00:00
</div>
</div>
2025-01-17 22:16:14 +00:00
</div>
</section>
2025-01-23 01:22:29 +00:00
<section class="animate-reveal mt-16 opacity-0 [animation-delay:0.1s]">
<h2 class="mb-4 text-2xl font-semibold break-words capitalize">About me</h2>
2025-01-17 22:16:14 +00:00
<p class="mb-2">
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-2">
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-2">
My current portfolio of work can be found on my website at:
<a
2025-01-23 01:22:29 +00:00
class="text-secondary decoration-tertiary underline decoration-wavy"
2025-01-17 22:16:14 +00:00
href="/projects">troylusty.com/projects</a
>.
</p>
</section>
2025-01-23 01:22:29 +00:00
<section class="animate-reveal mt-16 opacity-0 [animation-delay:0.2s]">
<h2 class="mb-4 text-2xl font-semibold break-words capitalize">
2025-01-17 22:16:14 +00:00
Education
</h2>
<Education />
</section>
2025-01-23 01:22:29 +00:00
<section class="animate-reveal mt-16 opacity-0 [animation-delay:0.3s]">
<h2 class="mb-4 text-2xl font-semibold break-words capitalize">Skills</h2>
2025-01-17 22:16:14 +00:00
<p class="mb-2">
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>
2025-01-23 01:22:29 +00:00
<section class="animate-reveal mt-16 opacity-0 [animation-delay:0.4s]">
<h2 class="mb-4 text-2xl font-semibold break-words capitalize">
2025-01-17 22:16:14 +00:00
Experience
</h2>
<Work />
</section>
2024-12-23 21:18:55 +00:00
</Layout>