-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 2.93 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
55
56
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<style type="text/css">
html, body {
background-color: white;
}
</style>
<title>Valosan Design</title>
</head>
<body>
<div class="relative overflow-hidden bg-white">
<div class="mx-auto max-w-7xl">
<main class="mx-auto mt-10 max-w-7xl px-4 sm:mt-12 sm:px-6 md:mt-16 lg:mt-20 lg:px-8 xl:mt-28">
<div class="sm:text-center lg:text-left">
<h1 class="text-4xl my-12 font-bold tracking-tight text-gray-900 sm:text-5xl md:text-6xl">
<span class="relative inline-block mb-2">
Valosan
<svg viewBox="0 0 212 8" class="absolute left-0 w-full h-3 text-purple-400 -z-1" aria-hidden="true" preserveAspectRatio="none">
<g buffered-rendering="static">
<path fill="url(#underline-gradient)" d="M1.445 7.882c-.37 0-.636-.004-.784-.012-1.916-.185.772-3.882 2.485-4.443.424-.141.902-.202 1.721-.202.349 0 .758.011 1.252.031.225.012.679.018 1.321.018 6.838 0 38.083-.706 39.678-.706 11.098 0 83.933-1.1 89.282-1.365 2.75-.14 4.117-.196 5.838-.196.96 0 62.693-1.007 67.005-1.007.98 0 1.6.018 1.654.062.889.667-1.153 3.577-3.041 4.302-.847.34-3.457.393-6.863.393-.774 0-1.589-.003-2.434-.006-.845-.003-1.721-.006-2.614-.006-3.228 0-119.838 1.951-121.647 1.951-9.945 0-37.742.684-40.339.684-4.836 0-11.882.126-18.261.251-6.378.125-12.089.251-14.253.251z"></path>
</g>
<defs>
<linearGradient id="underline-gradient" gradientTransform="rotate(110)">
<stop offset="5%" stop-color="#CA7FF8"></stop>
<stop offset="95%" stop-color="#795BE9"></stop>
</linearGradient>
</defs>
</svg>
</span>
<span class="block text-indigo-600 xl:inline">styles and design resources</span>
</h1>
<p class="mt-3 text-base text-gray-500 sm:mx-auto sm:mt-5 sm:max-w-xl sm:text-lg md:mt-5 md:text-xl lg:mx-0">
Design resources available for <b>Valosan</b>
</p>
<div class="mt-5 sm:mt-8 sm:flex sm:justify-center lg:justify-start">
<div class="rounded-md shadow">
<a href="https://valosan.designsystem.fi" class="flex w-full items-center justify-center rounded-md border border-transparent bg-indigo-600 px-8 py-3 text-base font-medium text-white hover:bg-indigo-700 md:py-4 md:px-10 md:text-lg">Design System (Figma)</a>
</div>
<div class="mt-3 sm:mt-0 sm:ml-3">
<a href="https://storybook.valosan.com" class="flex w-full items-center justify-center rounded-md border border-transparent bg-indigo-100 px-8 py-3 text-base font-medium text-indigo-700 hover:bg-indigo-200 md:py-4 md:px-10 md:text-lg">Storybook (Components)</a>
</div>
</div>
</div>
</main>
</div>
</div>
</div>
</body>
</html>