Intial commit.
This commit is contained in:
commit
349d0ad4ff
11 changed files with 1676 additions and 0 deletions
93
index.html
Normal file
93
index.html
Normal file
|
@ -0,0 +1,93 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Cameron B. R. Redmore - Software Developer</title>
|
||||
|
||||
<link rel="stylesheet" href="/src/style.css">
|
||||
</head>
|
||||
<body class="text-gray-200">
|
||||
|
||||
<script type="module">
|
||||
import '~icons/mdi/github'
|
||||
import '~icons/mdi/git'
|
||||
</script>
|
||||
|
||||
<!-- Decorative background shapes -->
|
||||
<div class="shape shape-1"></div>
|
||||
<div class="shape shape-2"></div>
|
||||
<div class="shape shape-3"></div>
|
||||
|
||||
<!-- Main container -->
|
||||
<main class="min-h-screen w-full flex items-center justify-center p-4 sm:p-6 lg:p-8">
|
||||
|
||||
<!-- The Glass Card -->
|
||||
<div class="glass-card w-full max-w-4xl rounded-2xl p-6 sm:p-8 md:p-10">
|
||||
<div class="flex flex-col md:flex-row items-center md:items-start md:space-x-10">
|
||||
|
||||
<!-- Left Column: Profile Picture and Social Links -->
|
||||
<div class="flex-shrink-0 text-center mb-6 md:mb-0">
|
||||
<img src="https://avatars.githubusercontent.com/u/5846077?v=4" alt="Cameron B. R. Redmore" class="rounded-full w-32 h-32 md:w-40 md:h-40 mx-auto border-4 border-white/20 shadow-lg">
|
||||
<div class="mt-6 flex justify-center space-x-4">
|
||||
<a href="https://github.com/CameronRedmore" target="_blank" class="skill-tag p-3 rounded-full" aria-label="GitHub Profile">
|
||||
<icon-mdi-github class="w-8 h-8 text-2xl" />
|
||||
</a>
|
||||
<a href="https://git.cmzi.uk/" target="_blank" class="skill-tag p-3 rounded-full" aria-label="Personal Git Hosting">
|
||||
<icon-mdi-git class="w-8 h-8 text-2xl" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Right Column: Main Content -->
|
||||
<div class="w-full">
|
||||
<h1 class="text-4xl md:text-5xl font-bold text-white animated-gradient">Cameron B. R. Redmore</h1>
|
||||
<p class="mt-2 text-lg text-cyan-200">26-year-old Software Developer from Kingston-Upon-Hull, UK</p>
|
||||
|
||||
<p class="mt-6 text-gray-200 leading-relaxed">
|
||||
With 8 years of professional experience and over 15 years of passion-driven coding, I build robust and efficient software solutions. My journey has taken me from recreational projects to developing complex professional applications.
|
||||
</p>
|
||||
|
||||
<!-- Interests & Hobbies Section -->
|
||||
<div class="mt-8">
|
||||
<h2 class="text-xl font-semibold text-white mb-3">Interests & Hobbies</h2>
|
||||
<p class="text-gray-200 leading-relaxed">
|
||||
Beyond my core work, I have a deep interest in the broader field of computing and programming. I'm particularly passionate about the AI and Machine Learning space, focusing on integrating Large Language Models (LLMs) in novel ways. In my spare time, I also enjoy the logical challenge of puzzles like Sudoku and Nonograms.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="mt-8">
|
||||
<h2 class="text-xl font-semibold text-white mb-3">Programming Skills</h2>
|
||||
<div class="flex flex-wrap gap-2">
|
||||
<span class="skill-tag text-sm font-medium px-4 py-1 rounded-full">HTML</span>
|
||||
<span class="skill-tag text-sm font-medium px-4 py-1 rounded-full">CSS</span>
|
||||
<span class="skill-tag text-sm font-medium px-4 py-1 rounded-full">JavaScript</span>
|
||||
<span class="skill-tag text-sm font-medium px-4 py-1 rounded-full">TypeScript</span>
|
||||
<span class="skill-tag text-sm font-medium px-4 py-1 rounded-full">C#</span>
|
||||
<span class="skill-tag text-sm font-medium px-4 py-1 rounded-full">C++</span>
|
||||
<span class="skill-tag text-sm font-medium px-4 py-1 rounded-full">C</span>
|
||||
<span class="skill-tag text-sm font-medium px-4 py-1 rounded-full">Java</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Current Project Section -->
|
||||
<div class="mt-8">
|
||||
<h2 class="text-xl font-semibold text-white mb-3">Current Hobby Project</h2>
|
||||
<a href="https://weaver.cmzi.uk/" target="_blank" class="block p-4 rounded-lg skill-tag transition-all duration-300 ease-in-out hover:bg-white/30">
|
||||
<div class="flex items-center space-x-4">
|
||||
<div class="flex-shrink-0">
|
||||
<svg class="w-8 h-8 text-cyan-300" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13.828 10.172a4 4 0 00-5.656 0l-4 4a4 4 0 105.656 5.656l1.102-1.101m-.758-4.899a4 4 0 005.656 0l4-4a4 4 0 00-5.656-5.656l-1.1 1.1"></path></svg>
|
||||
</div>
|
||||
<div>
|
||||
<p class="font-bold text-white">Word Weaver</p>
|
||||
<p class="text-sm text-cyan-200">An AI-powered web game of "Alchemy" with infinite, wacky combinations.</p>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue