-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathHowWeAre.html
56 lines (53 loc) · 3.39 KB
/
HowWeAre.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>10 Years of 603: Our Journey</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
.golden { color: rgb(247, 177, 14); }
.golden-bg { background-color: rgb(247, 177, 14); }
.golden-border { border: 4px solid rgb(247, 177, 14); }
</style>
</head>
<body class="bg-black text-white">
<header class="text-center py-20 bg-gray-800 text-white relative">
<div class="absolute inset-0 bg-black bg-opacity-40"></div>
<div class="relative z-10">
<h1 class="text-7xl font-extrabold golden animate-pulse">10 Years of 603</h1>
<p class="text-2xl mt-6 text-gray-300 max-w-4xl mx-auto">A decade of excellence in workspace design, blending sophistication and functionality.</p>
<button class="mt-6 px-6 py-3 golden-bg text-black font-semibold text-lg rounded-lg shadow-lg hover:scale-105 transition-transform">Discover More</button>
</div>
</header>
<section class="max-w-7xl mx-auto px-6 py-16 grid md:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-4xl font-bold mb-6 golden">Redefining Workspaces</h2>
<p class="text-lg text-gray-300 leading-relaxed">For ten years, 603 has been transforming office spaces with cutting-edge design, premium materials, and innovative concepts. Our commitment to excellence makes every workspace a perfect blend of elegance and efficiency.</p>
</div>
<div>
<img src="./assets/images/office-space.png" alt="Luxurious Office" class="rounded-lg shadow-lg w-full h-80 object-cover golden-border">
</div>
</section>
<section class="max-w-7xl mx-auto px-6 py-16 grid md:grid-cols-3 gap-10">
<div class="bg-gray-800 p-8 rounded-lg shadow-lg text-center hover:scale-105 transition-transform">
<img src="./assets/images/breakfast.png" alt="Breakfast Area" class="w-full h-60 object-cover rounded-lg mb-6 golden-border">
<h3 class="text-2xl font-semibold golden">Breakfast Area</h3>
<p class="mt-4 text-gray-300">A stylish space designed to start your day with inspiration and comfort.</p>
</div>
<div class="bg-gray-800 p-8 rounded-lg shadow-lg text-center hover:scale-105 transition-transform">
<img src="./assets/images/meetingRoom.png" alt="Meeting Rooms" class="w-full h-60 object-cover rounded-lg mb-6 golden-border">
<h3 class="text-2xl font-semibold golden">Meeting Rooms</h3>
<p class="mt-4 text-gray-300">High-tech meeting rooms built for productivity and collaboration.</p>
</div>
<div class="bg-gray-800 p-8 rounded-lg shadow-lg text-center hover:scale-105 transition-transform">
<img src="./assets/images/viewSpaces.png" alt="View Spaces" class="w-full h-60 object-cover rounded-lg mb-6 golden-border">
<h3 class="text-2xl font-semibold golden">View Spaces</h3>
<p class="mt-4 text-gray-300">Enjoy breathtaking views in our carefully designed open spaces.</p>
</div>
</section>
<footer class="text-center py-10 bg-gray-900 text-white">
<p class="text-lg text-gray-400">© <script>document.write(new Date().getFullYear());</script> 603 Interiors. All rights reserved.</p>
</footer>
</body>
</html>