haran-pro / index.html
HaranNaresh2194's picture
undefined - Initial Deployment
27d0326 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Haran Naresh - Portfolio</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #f8fafc;
scroll-behavior: smooth;
}
.accent-color {
color: #fc8a08;
}
.accent-bg {
background-color: #fc8a08;
}
.gradient-text {
background: linear-gradient(90deg, #fc8a08, #f97316);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.card-hover:hover {
transform: translateY(-5px);
box-shadow: 0 20px 25px -5px rgba(252, 138, 8, 0.1), 0 10px 10px -5px rgba(252, 138, 8, 0.04);
}
.social-icon:hover {
transform: scale(1.1);
}
.typewriter {
border-right: 3px solid #fc8a08;
white-space: nowrap;
overflow: hidden;
animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
@keyframes blink-caret {
from, to { border-color: transparent }
50% { border-color: #fc8a08; }
}
.floating {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="text-gray-800">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-sm z-50">
<div class="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-16 items-center">
<div class="flex-shrink-0 flex items-center">
<span class="text-xl font-bold gradient-text">HARAN NARESH</span>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-4">
<a href="#about" class="px-3 py-2 rounded-md text-sm font-medium hover:text-orange-500 transition">About</a>
<a href="#skills" class="px-3 py-2 rounded-md text-sm font-medium hover:text-orange-500 transition">Skills</a>
<a href="#journey" class="px-3 py-2 rounded-md text-sm font-medium hover:text-orange-500 transition">Journey</a>
<a href="#connect" class="px-3 py-2 rounded-md text-sm font-medium hover:text-orange-500 transition">Connect</a>
</div>
</div>
<div class="md:hidden">
<button id="menu-toggle" class="text-gray-500 hover:text-orange-500 focus:outline-none">
<svg class="h-6 w-6" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path>
</svg>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium hover:text-orange-500 transition">About</a>
<a href="#skills" class="block px-3 py-2 rounded-md text-base font-medium hover:text-orange-500 transition">Skills</a>
<a href="#journey" class="block px-3 py-2 rounded-md text-base font-medium hover:text-orange-500 transition">Journey</a>
<a href="#connect" class="block px-3 py-2 rounded-md text-base font-medium hover:text-orange-500 transition">Connect</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="pt-24 pb-16 md:pt-32 md:pb-24 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold mb-4">
Hi, I'm <span class="gradient-text">Haran Naresh K</span>
</h1>
<div class="typewriter text-xl md:text-2xl mb-6">
UI/UX Designer • Brand Strategist • Content Creator
</div>
<p class="text-lg mb-8 text-gray-600">
A BBA graduate with a passion for technology, design, and innovation. I blend business acumen with creative solutions to build impactful experiences.
</p>
<div class="flex space-x-4">
<a href="#connect" class="px-6 py-3 rounded-full accent-bg text-white font-medium hover:bg-orange-600 transition shadow-lg">
Let's Connect
</a>
<a href="#journey" class="px-6 py-3 rounded-full border-2 border-orange-500 text-orange-500 font-medium hover:bg-orange-50 transition">
My Journey
</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative w-64 h-64 md:w-80 md:h-80">
<div class="absolute inset-0 bg-gradient-to-br from-orange-200 to-orange-500 rounded-full opacity-20 blur-xl"></div>
<div class="relative w-full h-full rounded-full overflow-hidden border-4 border-orange-100 shadow-lg floating">
<img src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=774&q=80"
alt="Haran Naresh" class="w-full h-full object-cover">
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto bg-white rounded-xl shadow-sm">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-2">About Me</h2>
<div class="w-20 h-1 accent-bg mx-auto"></div>
</div>
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<p class="text-lg mb-6">
I'm a <span class="font-medium accent-color">BBA graduate</span> from Guru Nanak College and a <span class="font-medium accent-color">Fellow at Nxtwave CCBP 4.0 Academy</span>. Though my background is in commerce, my passion for technology, design, and innovation has led me to explore coding, UI/UX, branding, and business strategy.
</p>
<p class="text-lg mb-6">
I specialize in <span class="font-medium accent-color">UI/UX, graphic design, and branding</span>, crafting compelling visuals, brand identities, and impactful taglines. As a content writer and creator, I blend strategic storytelling with creativity to engage audiences effectively.
</p>
</div>
<div class="md:w-1/2 bg-gray-50 p-8 rounded-xl">
<h3 class="text-xl font-bold mb-4 accent-color">🚀 What drives me?</h3>
<p class="mb-6">
A passion for innovation, collaboration, and continuous learning. I believe in fusing business, technology, and design thinking to create groundbreaking solutions.
</p>
<p>
Soon, I'll be pursuing law, further expanding my multidisciplinary expertise.
</p>
</div>
</div>
</section>
<!-- Skills Section -->
<section id="skills" class="py-16 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-2">My Skills</h2>
<div class="w-20 h-1 accent-bg mx-auto"></div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Skill Card 1 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition card-hover">
<div class="text-orange-500 mb-4">
<i class="fas fa-paint-brush text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">UI/UX Design</h3>
<p class="text-gray-600">
Crafting intuitive and visually appealing user interfaces that enhance user experience and drive engagement.
</p>
</div>
<!-- Skill Card 2 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition card-hover">
<div class="text-orange-500 mb-4">
<i class="fas fa-tag text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Branding</h3>
<p class="text-gray-600">
Developing compelling brand identities, logos, and taglines that resonate with target audiences.
</p>
</div>
<!-- Skill Card 3 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition card-hover">
<div class="text-orange-500 mb-4">
<i class="fas fa-code text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Frontend Development</h3>
<p class="text-gray-600">
Building responsive websites using HTML, CSS, Bootstrap, and now expanding into Python.
</p>
</div>
<!-- Skill Card 4 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition card-hover">
<div class="text-orange-500 mb-4">
<i class="fas fa-pen-fancy text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Content Creation</h3>
<p class="text-gray-600">
Creating engaging content that informs, educates, and inspires audiences across platforms.
</p>
</div>
<!-- Skill Card 5 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition card-hover">
<div class="text-orange-500 mb-4">
<i class="fas fa-language text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Linguistics</h3>
<p class="text-gray-600">
Passionate about learning new languages and understanding different cultures through language.
</p>
</div>
<!-- Skill Card 6 -->
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition card-hover">
<div class="text-orange-500 mb-4">
<i class="fas fa-lightbulb text-4xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Innovation</h3>
<p class="text-gray-600">
Combining business, technology, and design thinking to create groundbreaking solutions.
</p>
</div>
</div>
</section>
<!-- Journey Section -->
<section id="journey" class="py-16 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto bg-gray-50 rounded-xl">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-2">My Journey</h2>
<div class="w-20 h-1 accent-bg mx-auto"></div>
</div>
<div class="relative">
<!-- Timeline line -->
<div class="hidden md:block absolute left-1/2 h-full w-1 bg-orange-200 transform -translate-x-1/2"></div>
<!-- Timeline items -->
<div class="space-y-8 md:space-y-0">
<!-- Item 1 -->
<div class="flex flex-col md:flex-row items-center md:items-start">
<div class="md:w-1/2 md:pr-12 mb-4 md:mb-0 md:text-right">
<h3 class="text-xl font-bold mb-2">BBA Graduate</h3>
<p class="text-gray-600">Guru Nanak College</p>
</div>
<div class="hidden md:block w-8 h-8 rounded-full accent-bg mx-4 flex-shrink-0"></div>
<div class="md:w-1/2 md:pl-12">
<div class="bg-white p-6 rounded-lg shadow-sm">
<p>Completed my Bachelor's in Business Administration, laying the foundation for my business acumen and strategic thinking.</p>
</div>
</div>
</div>
<!-- Item 2 -->
<div class="flex flex-col md:flex-row items-center md:items-start">
<div class="md:w-1/2 md:pr-12 mb-4 md:mb-0 md:text-right order-1 md:order-none">
<div class="bg-white p-6 rounded-lg shadow-sm">
<p>Joined the prestigious Nxtwave CCBP 4.0 Academy fellowship program to expand my technical skills and knowledge.</p>
</div>
</div>
<div class="hidden md:block w-8 h-8 rounded-full accent-bg mx-4 flex-shrink-0"></div>
<div class="md:w-1/2 md:pl-12 order-0 md:order-none">
<h3 class="text-xl font-bold mb-2">Nxtwave Fellow</h3>
<p class="text-gray-600">CCBP 4.0 Academy</p>
</div>
</div>
<!-- Item 3 -->
<div class="flex flex-col md:flex-row items-center md:items-start">
<div class="md:w-1/2 md:pr-12 mb-4 md:mb-0 md:text-right">
<h3 class="text-xl font-bold mb-2">Tech & Design Exploration</h3>
<p class="text-gray-600">Self-Directed Learning</p>
</div>
<div class="hidden md:block w-8 h-8 rounded-full accent-bg mx-4 flex-shrink-0"></div>
<div class="md:w-1/2 md:pl-12">
<div class="bg-white p-6 rounded-lg shadow-sm">
<p>Began exploring coding with HTML, CSS, and Bootstrap, while simultaneously developing expertise in UI/UX design and branding.</p>
</div>
</div>
</div>
<!-- Item 4 -->
<div class="flex flex-col md:flex-row items-center md:items-start">
<div class="md:w-1/2 md:pr-12 mb-4 md:mb-0 md:text-right order-1 md:order-none">
<div class="bg-white p-6 rounded-lg shadow-sm">
<p>Started creating content on LinkedIn and YouTube (InnovateXer), sharing knowledge and building a community of over 4,000 connections.</p>
</div>
</div>
<div class="hidden md:block w-8 h-8 rounded-full accent-bg mx-4 flex-shrink-0"></div>
<div class="md:w-1/2 md:pl-12 order-0 md:order-none">
<h3 class="text-xl font-bold mb-2">Content Creation</h3>
<p class="text-gray-600">LinkedIn & YouTube</p>
</div>
</div>
<!-- Item 5 -->
<div class="flex flex-col md:flex-row items-center md:items-start">
<div class="md:w-1/2 md:pr-12 mb-4 md:mb-0 md:text-right">
<h3 class="text-xl font-bold mb-2">Future Plans</h3>
<p class="text-gray-600">Law Studies</p>
</div>
<div class="hidden md:block w-8 h-8 rounded-full accent-bg mx-4 flex-shrink-0"></div>
<div class="md:w-1/2 md:pl-12">
<div class="bg-white p-6 rounded-lg shadow-sm">
<p>Preparing to pursue law studies to further expand my multidisciplinary expertise and combine legal knowledge with my existing skills.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Connect Section -->
<section id="connect" class="py-16 px-4 sm:px-6 lg:px-8 max-w-6xl mx-auto">
<div class="text-center mb-12">
<h2 class="text-3xl font-bold mb-2">Let's Connect</h2>
<div class="w-20 h-1 accent-bg mx-auto"></div>
<p class="text-lg mt-4 max-w-2xl mx-auto">
I'm always open to collaborations, discussions about innovation, or just a friendly chat about design and technology.
</p>
</div>
<div class="flex flex-col md:flex-row items-center bg-white rounded-xl shadow-sm overflow-hidden">
<div class="md:w-1/2 p-8 md:p-12">
<h3 class="text-2xl font-bold mb-6">Get in Touch</h3>
<form class="space-y-4">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500 outline-none transition">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500 outline-none transition">
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-orange-500 focus:border-orange-500 outline-none transition"></textarea>
</div>
<button type="submit" class="w-full px-6 py-3 rounded-full accent-bg text-white font-medium hover:bg-orange-600 transition shadow-lg">
Send Message
</button>
</form>
</div>
<div class="md:w-1/2 bg-gradient-to-br from-orange-100 to-orange-200 p-8 md:p-12 flex flex-col justify-center">
<h3 class="text-2xl font-bold mb-6 accent-color">Find Me Online</h3>
<div class="space-y-4">
<a href="#" class="flex items-center space-x-3 text-gray-700 hover:text-orange-500 transition">
<div class="w-10 h-10 rounded-full bg-white flex items-center justify-center shadow-sm social-icon transition">
<i class="fab fa-linkedin-in text-lg"></i>
</div>
<span>LinkedIn (4,000+ connections)</span>
</a>
<a href="#" class="flex items-center space-x-3 text-gray-700 hover:text-orange-500 transition">
<div class="w-10 h-10 rounded-full bg-white flex items-center justify-center shadow-sm social-icon transition">
<i class="fab fa-youtube text-lg"></i>
</div>
<span>YouTube (InnovateXer)</span>
</a>
<a href="#" class="flex items-center space-x-3 text-gray-700 hover:text-orange-500 transition">
<div class="w-10 h-10 rounded-full bg-white flex items-center justify-center shadow-sm social-icon transition">
<i class="fas fa-globe text-lg"></i>
</div>
<span>haran.pro</span>
</a>
<a href="#" class="flex items-center space-x-3 text-gray-700 hover:text-orange-500 transition">
<div class="w-10 h-10 rounded-full bg-white flex items-center justify-center shadow-sm social-icon transition">
<i class="fab fa-github text-lg"></i>
</div>
<span>GitHub</span>
</a>
</div>
<div class="mt-8">
<h4 class="font-bold mb-2 accent-color">Or email me at:</h4>
<a href="mailto:[email protected]" class="text-gray-700 hover:text-orange-500 transition">[email protected]</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12 px-4 sm:px-6 lg:px-8">
<div class="max-w-6xl mx-auto">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<span class="text-xl font-bold gradient-text">HARAN NARESH</span>
<p class="mt-2 text-gray-400">Innovating at the intersection of business, design & technology.</p>
</div>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition social-icon">
<i class="fab fa-linkedin-in text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition social-icon">
<i class="fab fa-youtube text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition social-icon">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition social-icon">
<i class="fab fa-twitter text-xl"></i>
</a>
</div>
</div>
<div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
<p>&copy; 2023 Haran Naresh K. All rights reserved.</p>
</div>
</div>
</footer>
<!-- Back to Top Button -->
<button id="back-to-top" class="fixed bottom-8 right-8 w-12 h-12 rounded-full accent-bg text-white shadow-lg hidden">
<i class="fas fa-arrow-up"></i>
</button>
<script>
// Mobile menu toggle
document.getElementById('menu-toggle').addEventListener('click', function() {
document.getElementById('mobile-menu').classList.toggle('hidden');
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
document.getElementById('mobile-menu').classList.add('hidden');
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
});
});
// Back to top button
const backToTopButton = document.getElementById('back-to-top');
window.addEventListener('scroll', function() {
if (window.pageYOffset > 300) {
backToTopButton.classList.remove('hidden');
} else {
backToTopButton.classList.add('hidden');
}
});
backToTopButton.addEventListener('click', function() {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
// Form submission (demo only)
const form = document.querySelector('form');
if (form) {
form.addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! This is a demo form. In a real implementation, this would send your message.');
form.reset();
});
}
</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=HaranNaresh2194/haran-pro" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>