-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
56 lines (54 loc) · 2.86 KB
/
Copy pathhome.html
File metadata and controls
56 lines (54 loc) · 2.86 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
<html>
<head>
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin="" />
<link
rel="stylesheet"
as="style"
onload="this.rel='stylesheet'"
href="https://fonts.googleapis.com/css2?display=swap&family=Inter%3Awght%40400%3B500%3B700%3B900&family=Noto+Sans%3Awght%40400%3B500%3B700%3B900"
/>
<title>Stitch Design</title>
<link rel="icon" type="image/x-icon" href="data:image/x-icon;base64," />
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
</head>
<body>
<div
class="relative flex size-full min-h-screen flex-col bg-[#101a23] dark justify-between group/design-root overflow-x-hidden"
style='font-family: Inter, "Noto Sans", sans-serif;'
>
<div>
<div class="@container">
<div class="@[480px]:px-4 @[480px]:py-3">
<div
class="w-full bg-center bg-no-repeat bg-cover flex flex-col justify-end overflow-hidden bg-[#101a23] @[480px]:rounded-xl min-h-80"
style='background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuBWykXkThUOUsFRhE2J37OyGE9O3wIaPvbBAeG0zSmg_T5doQuP4wNZYfghdO6MnFkzOJrpo_NeZe08bNSRtlC-vx2aWtyQe20Zk65LrxGTuYjQ85LYNmqvnbhG4iRMEeG-tkn2QoUEnj2TzIRtqQET6qg04cytHStn_DLml9jSb6o-ODtQ94OlXPSaEJGagIM-EZeYhB3tlEHTYGF4DjJJLhspZUfzm6RfBc-cXlj292mJnfTTbeZ0fdk0A80ZmBnZaVaLoBbIvcWF");'
></div>
</div>
</div>
<div class="flex px-4 py-3">
<button
class="flex min-w-[84px] max-w-[480px] cursor-pointer items-center justify-center overflow-hidden rounded-full h-12 px-5 flex-1 bg-[#0c7ff2] text-white text-base font-bold leading-normal tracking-[0.015em]"
>
<span class="truncate">Continue with Email</span>
</button>
</div>
<div class="flex px-4 py-3">
<button
class="flex min-w-[84px] max-w-[480px] cursor-pointer items-center justify-center overflow-hidden rounded-full h-12 px-5 flex-1 bg-[#223649] text-white gap-2 pl-5 text-base font-bold leading-normal tracking-[0.015em]"
>
<div class="text-white" data-icon="GoogleLogo" data-size="24px" data-weight="regular">
<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" fill="currentColor" viewBox="0 0 256 256">
<path d="M224,128a96,96,0,1,1-21.95-61.09,8,8,0,1,1-12.33,10.18A80,80,0,1,0,207.6,136H128a8,8,0,0,1,0-16h88A8,8,0,0,1,224,128Z"></path>
</svg>
</div>
<span class="truncate">Continue with Google</span>
</button>
</div>
</div>
<div>
<p class="text-[#90adcb] text-sm font-normal leading-normal pb-3 pt-1 px-4 text-center">By continuing, you agree to our Terms of Service and Privacy Policy</p>
<div class="h-5 bg-[#101a23]"></div>
</div>
</div>
</body>
</html>