pixelportfolio-pro / index.html
Scroll26's picture
This Portfolio is for a Freelancer/Media Designer. While he does make Websites, his main focus is on Animation/3D/Videogames. He also has some experience with A.I. The website should be modern, dark and most importantly unique. It also needs an Impressum and Datenschutz page
a07a2f6 verified
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NexusMedia | Digital Art & Animation</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#6366f1',
secondary: '#f43f5e'
}
}
}
}
</script>
</head>
<body class="bg-gray-900">
<custom-navbar active="home"></custom-navbar>
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<section class="mb-20">
<div class="text-center">
<h1 class="text-5xl md:text-7xl font-bold text-white mb-6">Pushing <span class="text-primary">Digital Boundaries</span></h1>
<p class="text-xl md:text-2xl text-gray-300 max-w-3xl mx-auto">3D Animation • Game Design • AI Integration • Interactive Media</p>
<div class="mt-10 flex justify-center gap-4">
<a href="projects.html" class="bg-primary hover:bg-primary-600 text-white px-6 py-3 rounded-lg font-medium transition-all">View Projects</a>
<a href="#contact" class="border-2 border-gray-300 hover:border-primary text-gray-700 hover:text-primary px-6 py-3 rounded-lg font-medium transition-all">Contact Me</a>
</div>
</div>
</section>
<section class="mb-20">
<div class="grid md:grid-cols-3 gap-8">
<div class="bg-gray-800 p-8 rounded-xl shadow-md hover:shadow-lg transition-all border border-gray-700">
<div class="text-primary mb-4">
<i data-feather="film" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-bold mb-2 text-white">3D Animation</h3>
<p class="text-gray-400">Cinematic motion graphics and character animations that bring stories to life.</p>
</div>
<div class="bg-gray-800 p-8 rounded-xl shadow-md hover:shadow-lg transition-all border border-gray-700">
<div class="text-primary mb-4">
<i data-feather="cpu" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-bold mb-2 text-white">Game Design</h3>
<p class="text-gray-400">Immersive game environments and mechanics from concept to completion.</p>
</div>
<div class="bg-gray-800 p-8 rounded-xl shadow-md hover:shadow-lg transition-all border border-gray-700">
<div class="text-primary mb-4">
<i data-feather="activity" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-bold mb-2 text-white">AI Integration</h3>
<p class="text-gray-400">Enhancing creative workflows with cutting-edge AI tools and techniques.</p>
</div>
</div>
</section>
<section class="mb-20">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold text-gray-900 mb-4">Featured Projects</h2>
<p class="text-gray-600 max-w-2xl mx-auto">A selection of my best work showcasing diverse skills and creative solutions.</p>
</div>
<div class="grid md:grid-cols-2 gap-8">
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition-all">
<img src="http://static.photos/technology/1200x630/1" alt="Project 1" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">E-commerce Platform</h3>
<p class="text-gray-600 mb-4">A full-featured online store with custom checkout flow.</p>
<a href="project-1.html" class="text-primary font-medium hover:text-primary-600 transition-colors">View Project →</a>
</div>
</div>
<div class="bg-white rounded-xl overflow-hidden shadow-md hover:shadow-xl transition-all">
<img src="http://static.photos/office/1200x630/2" alt="Project 2" class="w-full h-64 object-cover">
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">Productivity App</h3>
<p class="text-gray-600 mb-4">Helping teams collaborate more effectively.</p>
<a href="project-2.html" class="text-primary font-medium hover:text-primary-600 transition-colors">View Project →</a>
</div>
</div>
</div>
</section>
<section id="contact" class="mb-20">
<div class="bg-primary rounded-xl p-8 md:p-12 text-white">
<div class="max-w-3xl mx-auto text-center">
<h2 class="text-3xl font-bold mb-4">Let's Work Together</h2>
<p class="text-primary-100 mb-8">Have a project in mind? I'd love to hear about it. Get in touch and let's make something awesome together.</p>
<a href="mailto:contact@pixelportfolio.pro" class="bg-white text-primary hover:bg-gray-100 px-8 py-3 rounded-lg font-medium inline-block transition-all">Contact Me</a>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>