-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 3.52 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Data Driven Life</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/feather-icons/4.28.0/feather.min.js"></script>
</head>
<body class="bg-gray-100">
<div class="min-h-screen py-6 flex flex-col justify-center sm:py-12">
<div class="relative py-3 sm:max-w-xl sm:mx-auto">
<div class="absolute inset-0 bg-gradient-to-r from-cyan-400 to-blue-500 shadow-lg transform -skew-y-6 sm:skew-y-0 sm:-rotate-6 sm:rounded-3xl"></div>
<div class="relative px-4 py-10 bg-white shadow-lg sm:rounded-3xl sm:p-20">
<div class="max-w-md mx-auto">
<div>
<h1 class="text-3xl font-extrabold text-gray-900">The Data Driven Life</h1>
<p class="mt-2 text-lg text-gray-600">Exploring the intersection of data and everyday life</p>
</div>
<div class="divide-y divide-gray-200">
<div class="py-8 text-base leading-6 space-y-4 text-gray-700 sm:text-lg sm:leading-7">
<p>Welcome to The Data Driven Life, where we explore how data shapes our world and empowers our daily decisions.</p>
<p>In today's information-rich world, data-driven thinking isn't just for scientists or analysts - it's a powerful tool for everyone. Whether you're choosing a restaurant, planning your budget, or making career decisions, understanding and using data can lead to better outcomes.</p>
<p>Our mission is to demystify data and show you how to:</p>
<ul class="list-disc space-y-2 pl-5">
<li>Make smarter decisions in your personal and professional life</li>
<li>Understand the numbers behind the news and cut through misinformation</li>
<li>Use everyday tech to gather and analyze your own data</li>
<li>Develop a more objective, evidence-based approach to life's challenges</li>
</ul>
<p>Whether you're a data novice or a seasoned pro, join us as we uncover the power of data in our daily lives and learn to harness it for personal growth and success.</p>
</div>
<div class="py-6 text-base leading-6 sm:text-lg sm:leading-7">
<h2 class="font-bold text-xl mb-4">Data-Driven Insights</h2>
<blockquote class="italic border-l-4 border-cyan-500 pl-4 mb-4">
"Without data, you're just another person with an opinion." - W. Edwards Deming
</blockquote>
<blockquote class="italic border-l-4 border-cyan-500 pl-4">
"Data is the new oil. It's valuable, but if unrefined it cannot really be used." - Clive Humby
</blockquote>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="text-center py-4 text-sm text-gray-600">
Copyright 2024 ASC - Alexander Software Consulting
</footer>
<script>
feather.replace()
</script>
</body>
</html>