-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
108 lines (104 loc) · 6.07 KB
/
Copy pathabout.html
File metadata and controls
108 lines (104 loc) · 6.07 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us | Resiliz</title>
<meta name="description" content="About Resiliz - Our mission, values, and global team.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: { extend: { fontFamily: { sans: ['Inter', 'sans-serif'] }, colors: { primary: '#0066ff', secondary: '#1a1a1a', accent: '#ff6600', surface: '#f4f4f4' } } }
}
</script>
<style>
.nav-link { position: relative; }
.nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: #0066ff; transition: width 0.3s; }
.nav-link:hover::after { width: 100%; }
</style>
</head>
<body class="font-sans text-secondary bg-white antialiased">
<!-- Navigation -->
<header class="fixed w-full top-0 z-50 bg-white/95 backdrop-blur-md border-b border-gray-100">
<div class="container mx-auto px-6 py-5 flex justify-between items-center">
<a href="index.html" class="text-2xl font-black tracking-tighter hover:text-primary transition-colors">RESILIZ.</a>
<nav class="hidden md:flex space-x-10 text-sm font-bold uppercase tracking-wide">
<a href="services.html" class="nav-link hover:text-primary transition">Services</a>
<a href="work.html" class="nav-link hover:text-primary transition">Work</a>
<a href="insights.html" class="nav-link hover:text-primary transition">Insights</a>
<a href="about.html" class="nav-link text-primary transition">About</a>
</nav>
<div class="hidden md:flex items-center space-x-6">
<a href="contact.html" class="px-6 py-2.5 bg-black text-white text-sm font-bold hover:bg-primary transition-colors duration-300">Contact Us</a>
</div>
<button id="mobile-menu-btn" class="md:hidden text-2xl focus:outline-none"><i class="fas fa-bars"></i></button>
</div>
<div id="mobile-menu" class="hidden md:hidden bg-white border-t border-gray-100 absolute w-full left-0 h-screen p-8">
<nav class="flex flex-col space-y-6 text-xl font-bold">
<a href="services.html" class="hover:text-primary">Services</a>
<a href="work.html" class="hover:text-primary">Work</a>
<a href="insights.html" class="hover:text-primary">Insights</a>
<a href="about.html" class="text-primary">About</a>
<a href="contact.html" class="text-primary mt-4">Contact Us</a>
</nav>
</div>
</header>
<!-- About Header -->
<section class="pt-48 pb-16 px-6 bg-surface">
<div class="container mx-auto max-w-6xl">
<h1 class="text-5xl md:text-6xl font-black mb-6">Who We Are.</h1>
<p class="text-2xl md:text-3xl font-medium leading-normal max-w-4xl">
"Our commitment to engineering excellence and innovation means we prioritize robust foundations and embed AI into every step of the process – not just as a tool, but as a mindset."
</p>
</div>
</section>
<!-- Detailed About Content -->
<section class="py-24 px-6">
<div class="container mx-auto max-w-6xl">
<div class="grid md:grid-cols-2 gap-16">
<div>
<h2 class="text-3xl font-bold mb-6">Our Mission</h2>
<p class="text-gray-600 text-lg leading-relaxed mb-6">
Resiliz is more than a development shop; we are your strategic technology partner. Inspired by industry giants, we bring enterprise-grade scalability, security, and AI-driven insights to businesses of all sizes.
</p>
<p class="text-gray-600 text-lg leading-relaxed">
We believe that true resilience in software comes from thoughtful engineering, not just coding. We build systems that adapt, scale, and endure.
</p>
</div>
<div>
<h2 class="text-3xl font-bold mb-6">Our Global Team</h2>
<p class="text-gray-600 text-lg leading-relaxed mb-6">
With a unified team of architects and developers in Stockholm and Melbourne, we operate a follow-the-sun model that ensures productivity around the clock.
</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-black text-white pt-24 pb-12 px-6">
<div class="container mx-auto max-w-6xl">
<div class="flex flex-col md:flex-row justify-between items-center md:items-start mb-24">
<div>
<a href="index.html" class="text-3xl font-black tracking-tighter mb-8 block">RESILIZ.</a>
<p class="text-gray-400 max-w-xs">Building the digital backbone of tomorrow.</p>
</div>
<div class="mt-10 md:mt-0">
<a href="contact.html" class="px-8 py-3 bg-white text-black font-bold hover:bg-gray-200 transition-colors">Start a Project</a>
</div>
</div>
<div class="border-t border-gray-800 pt-12 flex flex-col md:flex-row justify-between items-center text-sm text-gray-500">
<p>© 2025 Resiliz. All rights reserved.</p>
</div>
</div>
</footer>
<script>
document.getElementById('mobile-menu-btn').addEventListener('click', () => {
document.getElementById('mobile-menu').classList.toggle('hidden');
});
</script>
</body>
</html>