Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| <title>Welcome to My Space</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: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); | |
| min-height: 100vh; | |
| overflow-x: hidden; | |
| } | |
| .hero-text { | |
| background: linear-gradient(90deg, #3a7bd5, #00d2ff); | |
| -webkit-background-clip: text; | |
| background-clip: text; | |
| color: transparent; | |
| } | |
| .floating { | |
| animation: floating 3s ease-in-out infinite; | |
| } | |
| @keyframes floating { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-15px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| .card-hover:hover { | |
| transform: translateY(-10px); | |
| box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
| } | |
| .social-icon { | |
| transition: all 0.3s ease; | |
| } | |
| .social-icon:hover { | |
| transform: scale(1.2); | |
| } | |
| </style> | |
| </head> | |
| <body class="text-gray-800"> | |
| <!-- Navigation --> | |
| <nav class="fixed w-full bg-white bg-opacity-90 backdrop-blur-sm z-50 shadow-sm"> | |
| <div class="max-w-7xl 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 text-blue-600">MySpace</span> | |
| </div> | |
| <div class="hidden md:block"> | |
| <div class="ml-10 flex items-baseline space-x-4"> | |
| <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-blue-600 bg-blue-50">Home</a> | |
| <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">About</a> | |
| <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Projects</a> | |
| <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Blog</a> | |
| <a href="#" class="px-3 py-2 rounded-md text-sm font-medium text-gray-600 hover:text-blue-600 hover:bg-blue-50">Contact</a> | |
| </div> | |
| </div> | |
| <div class="md:hidden"> | |
| <button class="mobile-menu-button p-2 rounded-md text-gray-600 hover:text-blue-600 hover:bg-blue-50 focus:outline-none"> | |
| <i class="fas fa-bars text-xl"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-12 md:mb-0"> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-6 hero-text"> | |
| Hello, I'm <span class="text-blue-600">Bewm</span> | |
| </h1> | |
| <p class="text-lg text-gray-600 mb-8 max-w-lg"> | |
| Welcome to my personal space where I share my thoughts, projects, and creative work. | |
| I'm passionate about design, technology, and building meaningful experiences. | |
| </p> | |
| <div class="flex space-x-4"> | |
| <button class="px-6 py-3 bg-blue-600 text-white rounded-lg font-medium hover:bg-blue-700 transition duration-300 shadow-lg"> | |
| Explore My Work | |
| </button> | |
| <button class="px-6 py-3 border border-blue-600 text-blue-600 rounded-lg font-medium hover:bg-blue-50 transition duration-300"> | |
| Contact Me | |
| </button> | |
| </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-blue-500 rounded-full opacity-20 blur-xl"></div> | |
| <img src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=880&q=80" | |
| alt="Profile" | |
| class="relative w-full h-full rounded-full object-cover border-4 border-white shadow-xl floating"> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Features Section --> | |
| <section class="py-20 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold text-gray-800 mb-4">What I Do</h2> | |
| <p class="text-lg text-gray-600 max-w-2xl mx-auto"> | |
| I specialize in creating beautiful, functional digital experiences that make an impact. | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="bg-white p-8 rounded-xl shadow-lg transition duration-300 card-hover"> | |
| <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-code text-blue-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Web Development</h3> | |
| <p class="text-gray-600"> | |
| Building responsive, performant websites and web applications with modern technologies. | |
| </p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-lg transition duration-300 card-hover"> | |
| <div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-paint-brush text-purple-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">UI/UX Design</h3> | |
| <p class="text-gray-600"> | |
| Creating intuitive and beautiful user interfaces that enhance user experience. | |
| </p> | |
| </div> | |
| <div class="bg-white p-8 rounded-xl shadow-lg transition duration-300 card-hover"> | |
| <div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-mobile-alt text-green-600 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-semibold mb-3">Mobile Apps</h3> | |
| <p class="text-gray-600"> | |
| Developing cross-platform mobile applications with a focus on performance and usability. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Recent Projects --> | |
| <section class="py-20 bg-gray-50"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold text-gray-800 mb-4">Recent Projects</h2> | |
| <p class="text-lg text-gray-600 max-w-2xl mx-auto"> | |
| Take a look at some of my latest work and creative projects. | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 card-hover"> | |
| <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80" | |
| alt="Project 1" | |
| class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-semibold mb-2">E-commerce Platform</h3> | |
| <p class="text-gray-600 mb-4">A modern online shopping experience with seamless checkout.</p> | |
| <a href="#" class="text-blue-600 font-medium hover:underline">View Project →</a> | |
| </div> | |
| </div> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 card-hover"> | |
| <img src="https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1469&q=80" | |
| alt="Project 2" | |
| class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-semibold mb-2">Health Tracker App</h3> | |
| <p class="text-gray-600 mb-4">Mobile application for tracking fitness and nutrition goals.</p> | |
| <a href="#" class="text-blue-600 font-medium hover:underline">View Project →</a> | |
| </div> | |
| </div> | |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg transition duration-300 card-hover"> | |
| <img src="https://images.unsplash.com/photo-1559028012-481c04fa702d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1436&q=80" | |
| alt="Project 3" | |
| class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-semibold mb-2">Portfolio Website</h3> | |
| <p class="text-gray-600 mb-4">Minimalist portfolio for a creative professional.</p> | |
| <a href="#" class="text-blue-600 font-medium hover:underline">View Project →</a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <button class="px-6 py-3 border border-blue-600 text-blue-600 rounded-lg font-medium hover:bg-blue-50 transition duration-300"> | |
| View All Projects | |
| </button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Testimonials --> | |
| <section class="py-20 bg-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold text-gray-800 mb-4">What People Say</h2> | |
| <p class="text-lg text-gray-600 max-w-2xl mx-auto"> | |
| Kind words from clients and colleagues I've worked with. | |
| </p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="bg-gray-50 p-8 rounded-xl"> | |
| <div class="flex items-center mb-6"> | |
| <img src="https://randomuser.me/api/portraits/women/43.jpg" | |
| alt="Client" | |
| class="w-12 h-12 rounded-full object-cover mr-4"> | |
| <div> | |
| <h4 class="font-semibold">Sarah Johnson</h4> | |
| <p class="text-gray-500 text-sm">CEO, TechStart</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 italic"> | |
| "Working with Bewm was an absolute pleasure. Their attention to detail and creative solutions exceeded our expectations." | |
| </p> | |
| <div class="flex mt-4 text-yellow-400"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| </div> | |
| <div class="bg-gray-50 p-8 rounded-xl"> | |
| <div class="flex items-center mb-6"> | |
| <img src="https://randomuser.me/api/portraits/men/32.jpg" | |
| alt="Client" | |
| class="w-12 h-12 rounded-full object-cover mr-4"> | |
| <div> | |
| <h4 class="font-semibold">Michael Chen</h4> | |
| <p class="text-gray-500 text-sm">Product Manager, DesignCo</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 italic"> | |
| "Bewm delivered our project ahead of schedule with exceptional quality. Their technical skills are matched by their professionalism." | |
| </p> | |
| <div class="flex mt-4 text-yellow-400"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| </div> | |
| </div> | |
| <div class="bg-gray-50 p-8 rounded-xl"> | |
| <div class="flex items-center mb-6"> | |
| <img src="https://randomuser.me/api/portraits/women/65.jpg" | |
| alt="Client" | |
| class="w-12 h-12 rounded-full object-cover mr-4"> | |
| <div> | |
| <h4 class="font-semibold">Emily Rodriguez</h4> | |
| <p class="text-gray-500 text-sm">Founder, CreativeMinds</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-600 italic"> | |
| "The website Bewm created for us has significantly increased our online conversions. Their design thinking is outstanding." | |
| </p> | |
| <div class="flex mt-4 text-yellow-400"> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star"></i> | |
| <i class="fas fa-star-half-alt"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact CTA --> | |
| <section class="py-20 bg-gradient-to-r from-blue-500 to-blue-600 text-white"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
| <h2 class="text-3xl font-bold mb-6">Ready to Start Your Project?</h2> | |
| <p class="text-lg mb-8 max-w-2xl mx-auto opacity-90"> | |
| I'm currently available for freelance work. Let's discuss how I can help bring your ideas to life. | |
| </p> | |
| <button class="px-8 py-4 bg-white text-blue-600 rounded-lg font-bold hover:bg-gray-100 transition duration-300 shadow-lg"> | |
| Get in Touch | |
| </button> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4">MySpace</h3> | |
| <p class="text-gray-400"> | |
| Creating digital experiences that inspire and engage. | |
| </p> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Quick Links</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Home</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">About</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Projects</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Services</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Web Development</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">UI/UX Design</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Mobile Apps</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white transition">Consulting</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-semibold mb-4">Connect</h4> | |
| <div class="flex space-x-4"> | |
| <a href="#" class="social-icon text-gray-400 hover:text-blue-400"> | |
| <i class="fab fa-twitter text-xl"></i> | |
| </a> | |
| <a href="#" class="social-icon text-gray-400 hover:text-blue-600"> | |
| <i class="fab fa-linkedin text-xl"></i> | |
| </a> | |
| <a href="#" class="social-icon text-gray-400 hover:text-pink-500"> | |
| <i class="fab fa-instagram text-xl"></i> | |
| </a> | |
| <a href="#" class="social-icon text-gray-400 hover:text-gray-300"> | |
| <i class="fab fa-github text-xl"></i> | |
| </a> | |
| </div> | |
| <p class="text-gray-400 mt-4"> | |
| hello@myspace.com<br> | |
| +1 (555) 123-4567 | |
| </p> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 text-center text-gray-500 text-sm"> | |
| <p>© 2023 MySpace. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Mobile menu toggle | |
| const mobileMenuButton = document.querySelector('.mobile-menu-button'); | |
| const mobileMenu = document.querySelector('.mobile-menu'); | |
| mobileMenuButton.addEventListener('click', () => { | |
| // You would implement mobile menu functionality here | |
| alert('Mobile menu would open here!'); | |
| }); | |
| // Simple animation on scroll | |
| document.addEventListener('DOMContentLoaded', () => { | |
| const cards = document.querySelectorAll('.card-hover'); | |
| const observer = new IntersectionObserver((entries) => { | |
| entries.forEach(entry => { | |
| if (entry.isIntersecting) { | |
| entry.target.style.opacity = 1; | |
| entry.target.style.transform = 'translateY(0)'; | |
| } | |
| }); | |
| }, { threshold: 0.1 }); | |
| cards.forEach(card => { | |
| card.style.opacity = 0; | |
| card.style.transform = 'translateY(20px)'; | |
| card.style.transition = 'all 0.6s ease'; | |
| observer.observe(card); | |
| }); | |
| }); | |
| </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=trillarmybewm/myspace" style="color: #fff;text-decoration: underline;" target="_blank" >🧬 Remix</a></p></body> | |
| </html> |