cosmic-brand-blastoff / about.html
RedVisionMusic's picture
lets create https://lovable.dev/projects/530a5e02-ed78-4b07-aea9-ef8883ee33ea
9bb5646 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | DigitalElevate</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>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#ef4444', // red-500
}
}
}
}
</script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-20">
<div class="flex flex-col lg:flex-row gap-12 items-center">
<div class="lg:w-1/2">
<img src="http://static.photos/office/1024x576/42" alt="Our Team" class="rounded-xl shadow-xl w-full">
</div>
<div class="lg:w-1/2">
<h1 class="text-4xl md:text-5xl font-bold text-gray-900 mb-8">We Are <span class="text-primary">DigitalElevate</span></h1>
<div class="prose max-w-none text-gray-600 mb-8">
<p class="text-lg mb-4">Founded in 2023, DigitalElevate is a full-service digital agency specializing in web development, digital marketing, and creative production.</p>
<p class="text-lg mb-4">Our team of passionate professionals works collaboratively to deliver exceptional results for clients across various industries.</p>
<p class="text-lg">We believe in building long-term relationships with our clients through transparent communication, innovative solutions, and measurable results.</p>
</div>
<a href="#" class="inline-block bg-primary hover:bg-red-600 text-white px-8 py-3 rounded-lg font-medium transition duration-300">Meet Our Team</a>
</div>
</div>
<section class="py-20">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold mb-4">Our <span class="text-primary">Values</span></h2>
<p class="text-gray-600 max-w-2xl mx-auto">The principles that guide everything we do</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-xl shadow-lg">
<div class="w-16 h-16 bg-red-100 rounded-full flex items-center justify-center mb-6 mx-auto">
<i data-feather="heart" class="text-primary w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-center">Passion</h3>
<p class="text-gray-600 text-center">We love what we do and it shows in the quality of our work.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg">
<div class="w-16 h-16 bg-red-100 rounded-full flex items-center justify-center mb-6 mx-auto">
<i data-feather="zap" class="text-primary w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-center">Innovation</h3>
<p class="text-gray-600 text-center">We constantly explore new technologies and creative approaches.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-lg">
<div class="w-16 h-16 bg-red-100 rounded-full flex items-center justify-center mb-6 mx-auto">
<i data-feather="users" class="text-primary w-8 h-8"></i>
</div>
<h3 class="text-xl font-bold mb-3 text-center">Collaboration</h3>
<p class="text-gray-600 text-center">We work closely with clients to achieve shared success.</p>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>