-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
83 lines (79 loc) · 4.19 KB
/
about.html
File metadata and controls
83 lines (79 loc) · 4.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - SkyCMS</title>
<link rel="stylesheet" href="dist/tailwind.css">
<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=Montserrat:wght@400;600;700&family=Roboto:wght@400;500;700&family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body class="bg-gray-50 font-roboto">
<nav class="bg-white shadow-lg">
<div class="container mx-auto px-6 py-4">
<div class="flex items-center justify-between">
<div class="text-2xl font-bold text-brand-500 font-montserrat">SkyCMS</div>
<div class="hidden md:flex space-x-6">
<a href="index.html" class="text-gray-700 hover:text-brand-600 transition">Home</a>
<a href="pricing.html" class="text-gray-700 hover:text-brand-600 transition">Pricing</a>
<a href="about.html" class="text-brand-600 font-bold">About</a>
<a href="#" class="text-gray-700 hover:text-brand-600 transition">Contact</a>
</div>
</div>
</div>
</nav>
<section class="bg-gradient-to-r from-brand-500 to-brand-700 text-white py-20">
<div class="container mx-auto px-6 text-center">
<h1 class="text-5xl font-bold mb-4 font-montserrat">About SkyCMS</h1>
<p class="text-xl mb-8">Building the future of content management</p>
</div>
</section>
<section class="py-16">
<div class="container mx-auto px-6">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-3xl font-bold text-brand-700 mb-4 font-montserrat">Our Mission</h2>
<p class="text-gray-600 mb-4">
SkyCMS is dedicated to making content management simple, accessible, and powerful for everyone.
</p>
<p class="text-gray-600">
Founded in 2024, we've been helping thousands of organizations manage their digital content with confidence.
</p>
</div>
<div class="bg-brand-100 rounded-lg p-8 text-center">
<div class="text-6xl mb-4">🚀</div>
<p class="text-brand-700 font-montserrat font-semibold">Since 2024</p>
</div>
</div>
</div>
</section>
<section class="bg-white py-16">
<div class="container mx-auto px-6">
<h2 class="text-3xl font-bold text-center text-brand-700 mb-12 font-montserrat">Our Team</h2>
<div class="grid md:grid-cols-3 gap-8">
<div class="text-center">
<div class="w-32 h-32 mx-auto bg-gradient-to-br from-accent-300 to-accent-500 rounded-full mb-4"></div>
<h3 class="text-xl font-bold text-gray-800 font-montserrat">Sarah Johnson</h3>
<p class="text-accent-600">Founder & CEO</p>
</div>
<div class="text-center">
<div class="w-32 h-32 mx-auto bg-gradient-to-br from-brand-500 to-brand-700 rounded-full mb-4"></div>
<h3 class="text-xl font-bold text-gray-800 font-montserrat">Mike Chen</h3>
<p class="text-brand-600">CTO</p>
</div>
<div class="text-center">
<div class="w-32 h-32 mx-auto bg-gradient-to-br from-accent-400 to-accent-600 rounded-full mb-4"></div>
<h3 class="text-xl font-bold text-gray-800 font-montserrat">Emma Williams</h3>
<p class="text-accent-600">VP Product</p>
</div>
</div>
</div>
</section>
<footer class="bg-gray-900 text-white py-8">
<div class="container mx-auto px-6 text-center">
<p class="font-montserrat">© 2026 SkyCMS</p>
</div>
</footer>
</body>
</html>