|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>LUXE | Premium Marketing Solutions</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=Montserrat:wght@300;400;500;600;700&display=swap'); |
|
|
|
body { |
|
font-family: 'Montserrat', sans-serif; |
|
scroll-behavior: smooth; |
|
} |
|
|
|
.hero-gradient { |
|
background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%); |
|
} |
|
|
|
.service-card: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); |
|
} |
|
|
|
.testimonial-card { |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.testimonial-card:hover { |
|
transform: scale(1.03); |
|
} |
|
|
|
.nav-link::after { |
|
content: ''; |
|
display: block; |
|
width: 0; |
|
height: 2px; |
|
background: #d4af37; |
|
transition: width 0.3s; |
|
} |
|
|
|
.nav-link:hover::after { |
|
width: 100%; |
|
} |
|
</style> |
|
</head> |
|
<body class="bg-gray-50 text-gray-800"> |
|
|
|
<nav class="fixed w-full bg-white/90 backdrop-blur-md shadow-sm z-50"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="flex justify-between h-20 items-center"> |
|
<div class="flex-shrink-0 flex items-center"> |
|
<span class="text-2xl font-bold text-gray-900 tracking-tight">LUXE</span> |
|
<span class="ml-2 text-xs font-light text-gray-500">MARKETING GROUP</span> |
|
</div> |
|
<div class="hidden md:block"> |
|
<div class="ml-10 flex items-center space-x-8"> |
|
<a href="#home" class="nav-link text-gray-900 hover:text-gray-600 px-3 py-2 text-sm font-medium">Home</a> |
|
<a href="#services" class="nav-link text-gray-900 hover:text-gray-600 px-3 py-2 text-sm font-medium">Services</a> |
|
<a href="#about" class="nav-link text-gray-900 hover:text-gray-600 px-3 py-2 text-sm font-medium">About</a> |
|
<a href="#clients" class="nav-link text-gray-900 hover:text-gray-600 px-3 py-2 text-sm font-medium">Clients</a> |
|
<a href="#contact" class="nav-link text-gray-900 hover:text-gray-600 px-3 py-2 text-sm font-medium">Contact</a> |
|
<a href="#contact" class="bg-black text-white px-6 py-2 rounded-full text-sm font-medium hover:bg-gray-800 transition duration-300">Get Started</a> |
|
</div> |
|
</div> |
|
<div class="-mr-2 flex md:hidden"> |
|
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-700 hover:text-gray-900 focus:outline-none"> |
|
<i class="fas fa-bars text-xl"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<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="#home" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-gray-600">Home</a> |
|
<a href="#services" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-gray-600">Services</a> |
|
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-gray-600">About</a> |
|
<a href="#clients" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-gray-600">Clients</a> |
|
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-gray-600">Contact</a> |
|
<a href="#contact" class="block w-full text-center bg-black text-white px-6 py-2 rounded-full text-sm font-medium hover:bg-gray-800 transition duration-300 mt-2">Get Started</a> |
|
</div> |
|
</div> |
|
</nav> |
|
|
|
|
|
<section id="home" class="relative h-screen flex items-center justify-center bg-gray-900 overflow-hidden"> |
|
<div class="absolute inset-0"> |
|
<img src="https://images.unsplash.com/photo-1497366811353-6870744d04b2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80" alt="Luxury Office" class="w-full h-full object-cover"> |
|
<div class="absolute inset-0 hero-gradient"></div> |
|
</div> |
|
|
|
<div class="relative z-10 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto text-center"> |
|
<h1 class="text-4xl md:text-6xl font-bold text-white mb-6 leading-tight"> |
|
Elevate Your <span class="text-yellow-500">Brand</span> <br>To New Heights |
|
</h1> |
|
<p class="text-xl text-gray-300 max-w-3xl mx-auto mb-10"> |
|
We craft bespoke marketing strategies that transform local businesses into market leaders. |
|
</p> |
|
<div class="flex flex-col sm:flex-row justify-center gap-4"> |
|
<a href="#contact" class="bg-yellow-600 hover:bg-yellow-700 text-white px-8 py-4 rounded-full text-lg font-semibold transition duration-300"> |
|
Schedule Consultation |
|
</a> |
|
<a href="#services" class="bg-transparent border-2 border-white hover:bg-white/10 text-white px-8 py-4 rounded-full text-lg font-semibold transition duration-300"> |
|
Explore Services |
|
</a> |
|
</div> |
|
</div> |
|
|
|
<div class="absolute bottom-10 left-0 right-0 flex justify-center"> |
|
<a href="#services" class="text-white animate-bounce"> |
|
<i class="fas fa-chevron-down text-2xl"></i> |
|
</a> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-16 bg-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center"> |
|
<div class="p-6"> |
|
<div class="text-4xl font-bold text-yellow-600 mb-2">250+</div> |
|
<div class="text-gray-600">Satisfied Clients</div> |
|
</div> |
|
<div class="p-6"> |
|
<div class="text-4xl font-bold text-yellow-600 mb-2">$500M+</div> |
|
<div class="text-gray-600">Revenue Generated</div> |
|
</div> |
|
<div class="p-6"> |
|
<div class="text-4xl font-bold text-yellow-600 mb-2">98%</div> |
|
<div class="text-gray-600">Client Retention</div> |
|
</div> |
|
<div class="p-6"> |
|
<div class="text-4xl font-bold text-yellow-600 mb-2">15+</div> |
|
<div class="text-gray-600">Industry Awards</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="services" 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"> |
|
<span class="text-yellow-600 font-semibold">OUR EXPERTISE</span> |
|
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-4">Premium Marketing Solutions</h2> |
|
<p class="mt-4 text-gray-600 max-w-2xl mx-auto"> |
|
We deliver exceptional results through our comprehensive suite of marketing services tailored for ambitious businesses. |
|
</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> |
|
<div class="h-48 bg-gray-900 flex items-center justify-center"> |
|
<i class="fas fa-bullseye text-5xl text-yellow-500"></i> |
|
</div> |
|
<div class="p-8"> |
|
<div class="uppercase tracking-wide text-sm text-yellow-600 font-semibold">Brand Strategy</div> |
|
<h3 class="mt-2 text-xl font-semibold text-gray-900">Luxury Brand Positioning</h3> |
|
<p class="mt-3 text-gray-600"> |
|
Craft a distinctive brand identity that commands premium pricing and customer loyalty in your market. |
|
</p> |
|
<div class="mt-6 flex items-center"> |
|
<a href="#" class="text-yellow-600 hover:text-yellow-700 font-medium">Learn more</a> |
|
<i class="fas fa-arrow-right ml-2 text-yellow-600"></i> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> |
|
<div class="h-48 bg-gray-900 flex items-center justify-center"> |
|
<i class="fas fa-chart-line text-5xl text-yellow-500"></i> |
|
</div> |
|
<div class="p-8"> |
|
<div class="uppercase tracking-wide text-sm text-yellow-600 font-semibold">Digital Growth</div> |
|
<h3 class="mt-2 text-xl font-semibold text-gray-900">Performance Marketing</h3> |
|
<p class="mt-3 text-gray-600"> |
|
Data-driven campaigns that deliver measurable ROI through precision targeting and conversion optimization. |
|
</p> |
|
<div class="mt-6 flex items-center"> |
|
<a href="#" class="text-yellow-600 hover:text-yellow-700 font-medium">Learn more</a> |
|
<i class="fas fa-arrow-right ml-2 text-yellow-600"></i> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="service-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> |
|
<div class="h-48 bg-gray-900 flex items-center justify-center"> |
|
<i class="fas fa-users text-5xl text-yellow-500"></i> |
|
</div> |
|
<div class="p-8"> |
|
<div class="uppercase tracking-wide text-sm text-yellow-600 font-semibold">Community</div> |
|
<h3 class="mt-2 text-xl font-semibold text-gray-900">Local Influence</h3> |
|
<p class="mt-3 text-gray-600"> |
|
Build authentic connections with your community through strategic partnerships and influencer collaborations. |
|
</p> |
|
<div class="mt-6 flex items-center"> |
|
<a href="#" class="text-yellow-600 hover:text-yellow-700 font-medium">Learn more</a> |
|
<i class="fas fa-arrow-right ml-2 text-yellow-600"></i> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-16 text-center"> |
|
<a href="#contact" class="inline-flex items-center px-8 py-3 border border-transparent text-base font-medium rounded-full text-white bg-black hover:bg-gray-800 transition duration-300"> |
|
View All Services |
|
<i class="fas fa-arrow-right ml-2"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="about" class="py-20 bg-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:grid lg:grid-cols-2 lg:gap-16 items-center"> |
|
<div class="mb-12 lg:mb-0"> |
|
<img src="https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80" alt="Our Team" class="rounded-xl shadow-xl w-full h-auto"> |
|
</div> |
|
<div> |
|
<span class="text-yellow-600 font-semibold">ABOUT US</span> |
|
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-4">The LUXE Difference</h2> |
|
<p class="mt-6 text-gray-600"> |
|
Founded in 2010, LUXE Marketing Group has established itself as the premier marketing partner for discerning local businesses seeking exponential growth without compromising their values. |
|
</p> |
|
<p class="mt-4 text-gray-600"> |
|
Our team of elite strategists, creatives, and analysts bring decades of combined experience from luxury retail, hospitality, and premium service industries. |
|
</p> |
|
|
|
<div class="mt-8 grid grid-cols-2 gap-4"> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-yellow-100 flex items-center justify-center"> |
|
<i class="fas fa-check text-yellow-600"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-medium text-gray-900">Bespoke Solutions</h4> |
|
<p class="mt-1 text-gray-600">No cookie-cutter approaches</p> |
|
</div> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-yellow-100 flex items-center justify-center"> |
|
<i class="fas fa-check text-yellow-600"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-medium text-gray-900">Discretion Assured</h4> |
|
<p class="mt-1 text-gray-600">Your secrets are safe with us</p> |
|
</div> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-yellow-100 flex items-center justify-center"> |
|
<i class="fas fa-check text-yellow-600"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-medium text-gray-900">Elite Network</h4> |
|
<p class="mt-1 text-gray-600">Access to premium partnerships</p> |
|
</div> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 h-10 w-10 rounded-full bg-yellow-100 flex items-center justify-center"> |
|
<i class="fas fa-check text-yellow-600"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-medium text-gray-900">White Glove Service</h4> |
|
<p class="mt-1 text-gray-600">Dedicated account management</p> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-10"> |
|
<a href="#" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-full text-white bg-black hover:bg-gray-800 transition duration-300"> |
|
Meet Our Team |
|
<i class="fas fa-arrow-right ml-2"></i> |
|
</a> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="clients" class="py-20 bg-gray-900 text-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="text-center mb-16"> |
|
<span class="text-yellow-500 font-semibold">OUR PRESTIGE</span> |
|
<h2 class="text-3xl md:text-4xl font-bold mt-4">Trusted by Elite Brands</h2> |
|
<p class="mt-4 text-gray-300 max-w-2xl mx-auto"> |
|
We've had the privilege of partnering with some of the most respected names in luxury retail, hospitality, and professional services. |
|
</p> |
|
</div> |
|
|
|
|
|
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 items-center justify-center"> |
|
<div class="flex justify-center p-6 grayscale hover:grayscale-0 transition duration-300"> |
|
<span class="text-2xl font-bold italic">Savoir</span> |
|
</div> |
|
<div class="flex justify-center p-6 grayscale hover:grayscale-0 transition duration-300"> |
|
<span class="text-2xl font-bold italic">Montclair</span> |
|
</div> |
|
<div class="flex justify-center p-6 grayscale hover:grayscale-0 transition duration-300"> |
|
<span class="text-2xl font-bold italic">The Row</span> |
|
</div> |
|
<div class="flex justify-center p-6 grayscale hover:grayscale-0 transition duration-300"> |
|
<span class="text-2xl font-bold italic">Vesper</span> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="mt-20 grid grid-cols-1 md:grid-cols-2 gap-8"> |
|
|
|
<div class="testimonial-card bg-gray-800 rounded-xl p-8"> |
|
<div class="flex items-center mb-6"> |
|
<div class="flex-shrink-0 h-12 w-12 rounded-full bg-gray-700 flex items-center justify-center"> |
|
<i class="fas fa-user text-gray-400"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-medium text-white">Sarah Kensington</h4> |
|
<p class="text-gray-400">CEO, The Kensington Group</p> |
|
</div> |
|
</div> |
|
<p class="text-gray-300 italic"> |
|
"LUXE transformed our boutique hotel chain from a local secret to an internationally recognized brand. Their strategic approach to luxury marketing is unparalleled." |
|
</p> |
|
<div class="mt-4 flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star ml-1"></i> |
|
<i class="fas fa-star ml-1"></i> |
|
<i class="fas fa-star ml-1"></i> |
|
<i class="fas fa-star ml-1"></i> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="testimonial-card bg-gray-800 rounded-xl p-8"> |
|
<div class="flex items-center mb-6"> |
|
<div class="flex-shrink-0 h-12 w-12 rounded-full bg-gray-700 flex items-center justify-center"> |
|
<i class="fas fa-user text-gray-400"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-medium text-white">James Vanderbilt</h4> |
|
<p class="text-gray-400">Founder, Vanderbilt Jewelers</p> |
|
</div> |
|
</div> |
|
<p class="text-gray-300 italic"> |
|
"Working with LUXE was the best business decision we've made. They understand the nuances of luxury consumer behavior better than anyone in the industry." |
|
</p> |
|
<div class="mt-4 flex text-yellow-400"> |
|
<i class="fas fa-star"></i> |
|
<i class="fas fa-star ml-1"></i> |
|
<i class="fas fa-star ml-1"></i> |
|
<i class="fas fa-star ml-1"></i> |
|
<i class="fas fa-star ml-1"></i> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-20 bg-yellow-600 text-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> |
|
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Business?</h2> |
|
<p class="text-xl text-yellow-100 max-w-3xl mx-auto mb-10"> |
|
Schedule a confidential consultation with our executive team to discuss your unique needs. |
|
</p> |
|
<a href="#contact" class="inline-flex items-center px-8 py-4 border border-transparent text-lg font-medium rounded-full text-yellow-700 bg-white hover:bg-gray-100 transition duration-300"> |
|
Get Started Today |
|
<i class="fas fa-arrow-right ml-2"></i> |
|
</a> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="contact" class="py-20 bg-white"> |
|
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> |
|
<div class="lg:grid lg:grid-cols-2 lg:gap-16"> |
|
<div class="mb-12 lg:mb-0"> |
|
<span class="text-yellow-600 font-semibold">GET IN TOUCH</span> |
|
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-4">Let's Elevate Your Brand Together</h2> |
|
<p class="mt-6 text-gray-600"> |
|
Our executive team is available for discreet consultations to discuss how we can help you achieve your business objectives. |
|
</p> |
|
|
|
<div class="mt-10 space-y-6"> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 h-12 w-12 rounded-full bg-yellow-100 flex items-center justify-center"> |
|
<i class="fas fa-map-marker-alt text-yellow-600"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-medium text-gray-900">Our Headquarters</h4> |
|
<p class="mt-1 text-gray-600">450 Park Avenue, 15th Floor<br>New York, NY 10022</p> |
|
</div> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 h-12 w-12 rounded-full bg-yellow-100 flex items-center justify-center"> |
|
<i class="fas fa-phone-alt text-yellow-600"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-medium text-gray-900">Contact</h4> |
|
<p class="mt-1 text-gray-600">+1 (212) 555-0100<br>[email protected]</p> |
|
</div> |
|
</div> |
|
<div class="flex items-start"> |
|
<div class="flex-shrink-0 h-12 w-12 rounded-full bg-yellow-100 flex items-center justify-center"> |
|
<i class="fas fa-clock text-yellow-600"></i> |
|
</div> |
|
<div class="ml-4"> |
|
<h4 class="text-lg font-medium text-gray-900">Hours</h4> |
|
<p class="mt-1 text-gray-600">Monday - Friday: 9am - 6pm<br>By appointment only</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="bg-gray-50 rounded-xl p-8 shadow-md"> |
|
<h3 class="text-2xl font-bold text-gray-900 mb-6">Schedule a Consultation</h3> |
|
<form> |
|
<div class="grid grid-cols-1 gap-6"> |
|
<div> |
|
<label for="name" class="block text-sm font-medium text-gray-700">Full Name</label> |
|
<input type="text" id="name" class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-yellow-500 focus:ring-yellow-500 py-3 px-4" placeholder="Your name"> |
|
</div> |
|
<div> |
|
<label for="email" class="block text-sm font-medium text-gray-700">Email Address</label> |
|
<input type="email" id="email" class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-yellow-500 focus:ring-yellow-500 py-3 px-4" placeholder="Your email"> |
|
</div> |
|
<div> |
|
<label for="phone" class="block text-sm font-medium text-gray-700">Phone Number</label> |
|
<input type="tel" id="phone" class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-yellow-500 focus:ring-yellow-500 py-3 px-4" placeholder="Your phone"> |
|
</div> |
|
<div> |
|
<label for="service" class="block text-sm font-medium text-gray-700">Service Interest</label> |
|
<select id="service" class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-yellow-500 focus:ring-yellow-500 py-3 px-4"> |
|
<option>Select a service</option> |
|
<option>Brand Strategy</option> |
|
<option>Digital Marketing</option> |
|
<option>Influence & PR</option> |
|
<option>Comprehensive Package</option> |
|
</select> |
|
</div> |
|
<div> |
|
<label for="message" class="block text-sm font-medium text-gray-700">Message</label> |
|
<textarea id="message" rows="4" class="mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-yellow-500 focus:ring-yellow-500 py-3 px-4" placeholder="Tell us about your business needs"></textarea> |
|
</div> |
|
<div> |
|
<button type="submit" class="w-full flex justify-center items-center px-6 py-4 border border-transparent rounded-full shadow-sm text-base font-medium text-white bg-black hover:bg-gray-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-yellow-500 transition duration-300"> |
|
Submit Request |
|
<i class="fas fa-paper-plane ml-2"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</form> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<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">LUXE</h3> |
|
<p class="text-gray-400"> |
|
Premium marketing solutions for discerning businesses seeking exponential growth. |
|
</p> |
|
<div class="mt-6 flex space-x-4"> |
|
<a href="#" class="text-gray-400 hover:text-white"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white"> |
|
<i class="fab fa-linkedin-in"></i> |
|
</a> |
|
<a href="#" class="text-gray-400 hover:text-white"> |
|
<i class="fab fa-instagram"></i> |
|
</a> |
|
</div> |
|
</div> |
|
<div> |
|
<h4 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Services</h4> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="text-gray-400 hover:text-white">Brand Strategy</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white">Digital Marketing</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white">Influence & PR</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white">Market Research</a></li> |
|
</ul> |
|
</div> |
|
<div> |
|
<h4 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Company</h4> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white">Our Team</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white">Case Studies</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li> |
|
</ul> |
|
</div> |
|
<div> |
|
<h4 class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4">Legal</h4> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a></li> |
|
</ul> |
|
</div> |
|
</div> |
|
<div class="mt-12 pt-8 border-t border-gray-800 flex flex-col md:flex-row justify-between items-center"> |
|
<p class="text-gray-400 text-sm"> |
|
© 2023 LUXE Marketing Group. All rights reserved. |
|
</p> |
|
<div class="mt-4 md:mt-0"> |
|
<a href="#" class="text-gray-400 hover:text-white text-sm mr-4">Privacy Policy</a> |
|
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a> |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
document.getElementById('mobile-menu-button').addEventListener('click', function() { |
|
const menu = document.getElementById('mobile-menu'); |
|
menu.classList.toggle('hidden'); |
|
}); |
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
anchor.addEventListener('click', function (e) { |
|
e.preventDefault(); |
|
|
|
const targetId = this.getAttribute('href'); |
|
if (targetId === '#') return; |
|
|
|
const targetElement = document.querySelector(targetId); |
|
if (targetElement) { |
|
|
|
const mobileMenu = document.getElementById('mobile-menu'); |
|
if (!mobileMenu.classList.contains('hidden')) { |
|
mobileMenu.classList.add('hidden'); |
|
} |
|
|
|
|
|
window.scrollTo({ |
|
top: targetElement.offsetTop - 80, |
|
behavior: 'smooth' |
|
}); |
|
} |
|
}); |
|
}); |
|
|
|
|
|
window.addEventListener('scroll', function() { |
|
const nav = document.querySelector('nav'); |
|
if (window.scrollY > 10) { |
|
nav.classList.add('shadow-lg'); |
|
} else { |
|
nav.classList.remove('shadow-lg'); |
|
} |
|
}); |
|
</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=mido09/usgrafi" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |