fintack / index.html
Harvinderkno's picture
Add 2 files
8245b37 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sean | Web Designer</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}
.nav-dot {
width: 8px;
height: 8px;
background-color: #999;
border-radius: 50%;
transition: all 0.3s ease;
}
.nav-dot.active {
background-color: #000;
transform: scale(1.2);
}
.skill-bar {
height: 4px;
background-color: #f0f0f0;
border-radius: 2px;
overflow: hidden;
}
.skill-progress {
height: 100%;
background-color: #000;
transition: width 1s ease;
}
.project-card:hover .project-overlay {
opacity: 1;
}
.project-overlay {
opacity: 0;
transition: opacity 0.3s ease;
background: rgba(0, 0, 0, 0.7);
}
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
</style>
</head>
<body class="bg-white text-gray-900">
<!-- Navigation Dots -->
<div class="fixed right-8 top-1/2 transform -translate-y-1/2 hidden md:block z-50">
<div class="flex flex-col space-y-4">
<a href="#home" class="nav-dot active" data-section="home"></a>
<a href="#services" class="nav-dot" data-section="services"></a>
<a href="#portfolio" class="nav-dot" data-section="portfolio"></a>
<a href="#about" class="nav-dot" data-section="about"></a>
<a href="#skills" class="nav-dot" data-section="skills"></a>
<a href="#contact" class="nav-dot" data-section="contact"></a>
</div>
</div>
<!-- Hero Section -->
<section id="home" class="min-h-screen flex items-center justify-center px-6 md:px-16 py-24 relative">
<div class="max-w-4xl mx-auto text-center fade-in">
<h1 class="text-4xl md:text-6xl font-bold mb-4">Hey — I'm Sean.</h1>
<p class="text-lg md:text-xl text-gray-600 mb-8">New York based</p>
<div class="flex justify-center space-x-4 mb-12">
<span class="px-4 py-1 bg-gray-100 rounded-full">Web Designer</span>
<span class="px-4 py-1 bg-gray-100 rounded-full">Pixel Pusher</span>
</div>
<p class="text-gray-700 max-w-2xl mx-auto mb-12">
I create digital solutions that blend aesthetics with functionality. With 8+ years of experience, I help brands and businesses establish their online presence through thoughtful design and product strategy.
</p>
<a href="#contact" class="inline-block px-8 py-3 bg-black text-white rounded-full hover:bg-gray-800 transition duration-300">
Let's work together
</a>
</div>
</section>
<!-- Services Section -->
<section id="services" class="min-h-screen py-24 px-6 md:px-16 bg-gray-50">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl md:text-4xl font-bold mb-16 text-center fade-in">01 — Services</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition duration-300 fade-in">
<h3 class="text-2xl font-bold mb-4">Web</h3>
<p class="text-gray-600 mb-6">
Development of stunning online web apps and creative presentations that engage users and drive conversions.
</p>
<div class="flex space-x-2">
<span class="px-3 py-1 bg-gray-100 rounded-full text-sm">UI/UX</span>
<span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Development</span>
<span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Animation</span>
</div>
</div>
<div class="bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition duration-300 fade-in">
<h3 class="text-2xl font-bold mb-4">Graphic</h3>
<p class="text-gray-600 mb-6">
Visually compelling graphic design solutions tailored to your needs, from logos to complete brand systems.
</p>
<div class="flex space-x-2">
<span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Branding</span>
<span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Print</span>
<span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Packaging</span>
</div>
</div>
<div class="bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition duration-300 fade-in">
<h3 class="text-2xl font-bold mb-4">Product</h3>
<p class="text-gray-600 mb-6">
Inventive product placement and incredible 24/7 assistance to ensure your digital products succeed in the market.
</p>
<div class="flex space-x-2">
<span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Strategy</span>
<span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Research</span>
<span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Testing</span>
</div>
</div>
<div class="bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition duration-300 fade-in">
<h3 class="text-2xl font-bold mb-4">Brand</h3>
<p class="text-gray-600 mb-6">
Creating exquisite and aesthetically pleasing brand identities that communicate your values and vision.
</p>
<div class="flex space-x-2">
<span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Identity</span>
<span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Strategy</span>
<span class="px-3 py-1 bg-gray-100 rounded-full text-sm">Guidelines</span>
</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="min-h-screen py-24 px-6 md:px-16">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl md:text-4xl font-bold mb-16 text-center fade-in">02 — Portfolio</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Project 1 -->
<div class="project-card relative rounded-lg overflow-hidden fade-in">
<img src="https://source.unsplash.com/random/600x400/?webdesign" alt="Project 1" class="w-full h-64 object-cover">
<div class="project-overlay absolute inset-0 flex items-center justify-center text-white p-6">
<div class="text-center">
<h3 class="text-xl font-bold mb-2">E-commerce Platform</h3>
<p class="text-sm">UI/UX Design, Frontend Development</p>
</div>
</div>
</div>
<!-- Project 2 -->
<div class="project-card relative rounded-lg overflow-hidden fade-in">
<img src="https://source.unsplash.com/random/600x400/?branding" alt="Project 2" class="w-full h-64 object-cover">
<div class="project-overlay absolute inset-0 flex items-center justify-center text-white p-6">
<div class="text-center">
<h3 class="text-xl font-bold mb-2">Brand Identity</h3>
<p class="text-sm">Logo Design, Brand Guidelines</p>
</div>
</div>
</div>
<!-- Project 3 -->
<div class="project-card relative rounded-lg overflow-hidden fade-in">
<img src="https://source.unsplash.com/random/600x400/?mobileapp" alt="Project 3" class="w-full h-64 object-cover">
<div class="project-overlay absolute inset-0 flex items-center justify-center text-white p-6">
<div class="text-center">
<h3 class="text-xl font-bold mb-2">Mobile Application</h3>
<p class="text-sm">UI Design, Prototyping</p>
</div>
</div>
</div>
<!-- Project 4 -->
<div class="project-card relative rounded-lg overflow-hidden fade-in">
<img src="https://source.unsplash.com/random/600x400/?dashboard" alt="Project 4" class="w-full h-64 object-cover">
<div class="project-overlay absolute inset-0 flex items-center justify-center text-white p-6">
<div class="text-center">
<h3 class="text-xl font-bold mb-2">Analytics Dashboard</h3>
<p class="text-sm">UI Design, Data Visualization</p>
</div>
</div>
</div>
<!-- Project 5 -->
<div class="project-card relative rounded-lg overflow-hidden fade-in">
<img src="https://source.unsplash.com/random/600x400/?packaging" alt="Project 5" class="w-full h-64 object-cover">
<div class="project-overlay absolute inset-0 flex items-center justify-center text-white p-6">
<div class="text-center">
<h3 class="text-xl font-bold mb-2">Product Packaging</h3>
<p class="text-sm">3D Rendering, Print Design</p>
</div>
</div>
</div>
<!-- Project 6 -->
<div class="project-card relative rounded-lg overflow-hidden fade-in">
<img src="https://source.unsplash.com/random/600x400/?illustration" alt="Project 6" class="w-full h-64 object-cover">
<div class="project-overlay absolute inset-0 flex items-center justify-center text-white p-6">
<div class="text-center">
<h3 class="text-xl font-bold mb-2">Illustration Series</h3>
<p class="text-sm">Digital Art, Character Design</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="min-h-screen py-24 px-6 md:px-16 bg-gray-50">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl md:text-4xl font-bold mb-16 text-center fade-in">03 — About</h2>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-12">
<div class="fade-in">
<h3 class="text-2xl font-bold mb-6">My Approach</h3>
<p class="text-gray-600 mb-6">
I believe in design that solves problems. Every pixel, interaction, and experience is carefully crafted to serve a purpose and create meaningful connections between brands and their audiences.
</p>
<p class="text-gray-600 mb-6">
With a background in both design and development, I bring a unique perspective to projects, ensuring that beautiful designs are also technically feasible and optimized for performance.
</p>
<div class="grid grid-cols-2 gap-4">
<div class="bg-white p-4 rounded-lg shadow-sm">
<p class="text-3xl font-bold mb-2">150+</p>
<p class="text-gray-600">Projects Completed</p>
</div>
<div class="bg-white p-4 rounded-lg shadow-sm">
<p class="text-3xl font-bold mb-2">8+</p>
<p class="text-gray-600">Years Experience</p>
</div>
</div>
</div>
<div class="fade-in">
<h3 class="text-2xl font-bold mb-6">Work History</h3>
<div class="space-y-6">
<div class="border-l-2 border-black pl-4 py-2">
<h4 class="font-bold">Lead Product Designer</h4>
<p class="text-gray-600">Digital Agency, New York • 2020-Present</p>
</div>
<div class="border-l-2 border-gray-200 pl-4 py-2">
<h4 class="font-bold">Senior UI Designer</h4>
<p class="text-gray-600">Tech Startup, San Francisco • 2018-2020</p>
</div>
<div class="border-l-2 border-gray-200 pl-4 py-2">
<h4 class="font-bold">Graphic Designer</h4>
<p class="text-gray-600">Design Studio, Chicago • 2016-2018</p>
</div>
<div class="border-l-2 border-gray-200 pl-4 py-2">
<h4 class="font-bold">Design Intern</h4>
<p class="text-gray-600">Marketing Agency, Boston • 2015-2016</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="min-h-screen py-24 px-6 md:px-16">
<div class="max-w-6xl mx-auto">
<h2 class="text-3xl md:text-4xl font-bold mb-16 text-center fade-in">04 — Skills</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<div class="fade-in">
<h3 class="text-2xl font-bold mb-6">Design</h3>
<div class="space-y-6">
<div>
<div class="flex justify-between mb-2">
<span>UI/UX Design</span>
<span>95%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 95%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>Brand Identity</span>
<span>90%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>Typography</span>
<span>85%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 85%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>Illustration</span>
<span>80%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 80%"></div>
</div>
</div>
</div>
</div>
<div class="fade-in">
<h3 class="text-2xl font-bold mb-6">Development</h3>
<div class="space-y-6">
<div>
<div class="flex justify-between mb-2">
<span>HTML/CSS</span>
<span>90%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 90%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>JavaScript</span>
<span>85%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 85%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>React</span>
<span>80%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 80%"></div>
</div>
</div>
<div>
<div class="flex justify-between mb-2">
<span>Node.js</span>
<span>75%</span>
</div>
<div class="skill-bar">
<div class="skill-progress" style="width: 75%"></div>
</div>
</div>
</div>
</div>
</div>
<div class="mt-16 fade-in">
<h3 class="text-2xl font-bold mb-6 text-center">Tools I Use</h3>
<div class="flex flex-wrap justify-center gap-4">
<div class="bg-gray-100 px-6 py-3 rounded-full flex items-center">
<i class="fab fa-figma text-xl mr-2"></i>
<span>Figma</span>
</div>
<div class="bg-gray-100 px-6 py-3 rounded-full flex items-center">
<i class="fab fa-adobe text-xl mr-2"></i>
<span>Adobe Suite</span>
</div>
<div class="bg-gray-100 px-6 py-3 rounded-full flex items-center">
<i class="fab fa-sketch text-xl mr-2"></i>
<span>Sketch</span>
</div>
<div class="bg-gray-100 px-6 py-3 rounded-full flex items-center">
<i class="fab fa-react text-xl mr-2"></i>
<span>React</span>
</div>
<div class="bg-gray-100 px-6 py-3 rounded-full flex items-center">
<i class="fab fa-git-alt text-xl mr-2"></i>
<span>Git</span>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="min-h-screen py-24 px-6 md:px-16 bg-gray-50">
<div class="max-w-4xl mx-auto">
<h2 class="text-3xl md:text-4xl font-bold mb-16 text-center fade-in">05 — Contact</h2>
<div class="text-center mb-16 fade-in">
<h3 class="text-2xl font-bold mb-4">Let's talk</h3>
<p class="text-gray-600 max-w-2xl mx-auto mb-8">
Interested in working together or have a project in mind? I'd love to hear from you. Get in touch and let's create something amazing.
</p>
<a href="mailto:hello@sean.design" class="inline-block px-8 py-3 bg-black text-white rounded-full hover:bg-gray-800 transition duration-300">
hello@sean.design
</a>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8 fade-in">
<div class="text-center">
<div class="bg-white p-6 rounded-lg shadow-sm h-full">
<i class="fas fa-map-marker-alt text-3xl mb-4"></i>
<h4 class="font-bold mb-2">Location</h4>
<p class="text-gray-600">New York, NY</p>
</div>
</div>
<div class="text-center">
<div class="bg-white p-6 rounded-lg shadow-sm h-full">
<i class="fas fa-phone-alt text-3xl mb-4"></i>
<h4 class="font-bold mb-2">Phone</h4>
<p class="text-gray-600">+1 (555) 123-4567</p>
</div>
</div>
<div class="text-center">
<div class="bg-white p-6 rounded-lg shadow-sm h-full">
<i class="fas fa-envelope text-3xl mb-4"></i>
<h4 class="font-bold mb-2">Email</h4>
<p class="text-gray-600">hello@sean.design</p>
</div>
</div>
</div>
<div class="mt-16 flex justify-center space-x-6 fade-in">
<a href="#" class="text-gray-700 hover:text-black transition duration-300">
<i class="fab fa-dribbble text-2xl"></i>
</a>
<a href="#" class="text-gray-700 hover:text-black transition duration-300">
<i class="fab fa-behance text-2xl"></i>
</a>
<a href="#" class="text-gray-700 hover:text-black transition duration-300">
<i class="fab fa-linkedin-in text-2xl"></i>
</a>
<a href="#" class="text-gray-700 hover:text-black transition duration-300">
<i class="fab fa-instagram text-2xl"></i>
</a>
<a href="#" class="text-gray-700 hover:text-black transition duration-300">
<i class="fab fa-twitter text-2xl"></i>
</a>
</div>
<div class="mt-16 text-center text-gray-500 text-sm fade-in">
<p>© 2023 Sean. All rights reserved.</p>
</div>
</div>
</section>
<script>
// Scroll animation
const fadeElements = document.querySelectorAll('.fade-in');
const fadeInOnScroll = () => {
fadeElements.forEach(element => {
const elementTop = element.getBoundingClientRect().top;
const windowHeight = window.innerHeight;
if (elementTop < windowHeight - 100) {
element.classList.add('visible');
}
});
};
// Navigation dots
const sections = document.querySelectorAll('section');
const navDots = document.querySelectorAll('.nav-dot');
const highlightNavDot = () => {
let currentSection = '';
sections.forEach(section => {
const sectionTop = section.offsetTop;
const sectionHeight = section.clientHeight;
if (window.scrollY >= sectionTop - 300) {
currentSection = section.getAttribute('id');
}
});
navDots.forEach(dot => {
dot.classList.remove('active');
if (dot.getAttribute('data-section') === currentSection) {
dot.classList.add('active');
}
});
};
// Initialize
window.addEventListener('load', () => {
fadeInOnScroll();
highlightNavDot();
});
window.addEventListener('scroll', () => {
fadeInOnScroll();
highlightNavDot();
});
// Smooth scroll for navigation dots
navDots.forEach(dot => {
dot.addEventListener('click', (e) => {
e.preventDefault();
const targetId = dot.getAttribute('data-section');
const targetSection = document.getElementById(targetId);
window.scrollTo({
top: targetSection.offsetTop,
behavior: 'smooth'
});
});
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Harvinderkno/fintack" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>