card-template1 / index.html
Batfly's picture
Now it's even worse - Initial Deployment
51357be verified
Raw
History Blame Contribute Delete
5.28 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Construction Pro - Business Card</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');
body {
font-family: 'Montserrat', sans-serif;
background-color: #f5f5f5;
}
.construction-pattern {
background-image: url("http://static.photos/construction/1200x630/5");
background-size: cover;
background-position: center;
}
.card-shadow {
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.hardhat-icon {
background-color: rgba(255, 165, 0, 0.1);
}
</style>
</head>
<body class="min-h-screen flex items-center justify-center p-4">
<div class="business-card w-full max-w-4xl h-auto min-h-[500px] md:h-auto bg-white rounded-xl overflow-hidden card-shadow transform transition-all hover:scale-105" data-aos="fade-up">
<div class="flex flex-col md:flex-row h-full">
<!-- Left Section -->
<div class="construction-pattern w-full md:w-2/3 p-8 flex flex-col justify-between relative">
<div class="absolute inset-0 bg-orange-600 opacity-10"></div>
<div class="relative z-10">
<div class="flex items-center mb-6">
<div class="hardhat-icon p-4 rounded-lg mr-4">
<i data-feather="tool" class="text-orange-600 w-8 h-8"></i>
</div>
<h1 class="text-3xl md:text-4xl font-bold text-gray-800">BUILD<span class="text-orange-600">RITE</span> CONSTRUCTION</h1>
</div>
<div class="mb-6">
<p class="text-lg md:text-xl font-semibold text-gray-700 mb-2">Building Your Vision, Brick by Brick</p>
<p class="text-gray-600">Commercial & Residential Construction Experts Since 2005</p>
</div>
</div>
<div class="relative z-10">
<div class="bg-white bg-opacity-90 p-4 rounded-lg shadow-inner">
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="flex items-center">
<i data-feather="phone" class="text-orange-600 mr-3"></i>
<span class="text-gray-700">(555) 123-4567</span>
</div>
<div class="flex items-center">
<i data-feather="mail" class="text-orange-600 mr-3"></i>
<span class="text-gray-700">contact@buildrite.com</span>
</div>
<div class="flex items-center">
<i data-feather="map-pin" class="text-orange-600 mr-3"></i>
<span class="text-gray-700">123 Builder's Lane, Construct City</span>
</div>
<div class="flex items-center">
<i data-feather="globe" class="text-orange-600 mr-3"></i>
<span class="text-gray-700">www.buildriteconstruction.com</span>
</div>
</div>
</div>
</div>
</div>
<!-- Right Section -->
<div class="w-full md:w-1/3 bg-gray-50 p-8 flex flex-col">
<div class="flex-1 flex flex-col items-center justify-center space-y-6">
<div class="text-center">
<div class="w-32 h-32 rounded-full bg-orange-100 flex items-center justify-center mx-auto mb-4 overflow-hidden">
<img src="http://static.photos/construction/200x200/10" alt="Profile" class="w-full h-full object-cover">
</div>
<h2 class="text-2xl font-bold text-gray-800">John Constructer</h2>
<p class="text-orange-600 font-medium text-lg">Founder & Lead Contractor</p>
</div>
<div class="w-full px-4">
<div class="bg-white p-3 rounded-lg shadow-md mx-auto max-w-xs">
<img src="https://api.qrserver.com/v1/create-qr-code/?size=150x150&data=https://www.buildriteconstruction.com" alt="QR Code" class="w-full">
</div>
<p class="text-sm text-gray-500 text-center mt-2">Scan to visit our website</p>
</div>
</div>
<div class="mt-auto pt-6">
<div class="flex justify-center space-x-4">
<a href="#" class="bg-blue-600 text-white p-3 rounded-full hover:bg-blue-700 transition">
<i data-feather="linkedin" class="w-5 h-5"></i>
</a>
<a href="#" class="bg-gray-800 text-white p-3 rounded-full hover:bg-gray-900 transition">
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a href="#" class="bg-red-600 text-white p-3 rounded-full hover:bg-red-700 transition">
<i data-feather="youtube" class="w-5 h-5"></i>
</a>
</div>
</div>
</div>
</div>
</div>
<script>
AOS.init({
duration: 800,
easing: 'ease-in-out'
});
feather.replace();
</script>
</body>
</html>