This repository was archived by the owner on Jan 23, 2025. It is now read-only.
forked from TailGrids/tailgrids
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcta.html
More file actions
120 lines (119 loc) 路 4.08 KB
/
Copy pathcta.html
File metadata and controls
120 lines (119 loc) 路 4.08 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
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Call To Action | TailGrids</title>
<link
rel="shortcut icon"
href="assets/images/favicon.svg"
type="image/x-icon"
/>
<link rel="stylesheet" href="assets/css/tailwind.css" />
</head>
<body>
<!-- ====== Call To Action Section Start -->
<section class="bg-white py-20 dark:bg-dark lg:py-[120px]">
<div class="container mx-auto">
<div
class="relative z-10 overflow-hidden rounded bg-primary px-8 py-12 md:p-[70px]"
>
<div class="-mx-4 flex flex-wrap items-center">
<div class="w-full px-4 lg:w-1/2">
<span class="mb-4 block text-base font-medium text-white">
Find Your Next Dream App
</span>
<h2
class="mb-6 text-3xl font-bold leading-tight text-white sm:mb-8 sm:text-[40px]/[48px] lg:mb-0"
>
<span class="xs:block"> Get started with </span>
<span>our free trial</span>
</h2>
</div>
<div class="w-full px-4 lg:w-1/2">
<div class="flex flex-wrap lg:justify-end">
<a
href="javascript:void(0)"
class="hover:bg-shadow-1 my-1 mr-4 inline-flex rounded-md bg-white px-7 py-3 text-base font-medium text-primary transition"
>
Get Pro Version
</a>
<a
href="javascript:void(0)"
class="my-1 inline-flex rounded-md bg-secondary px-7 py-3 text-base font-medium text-white transition hover:bg-opacity-90"
>
Start Free Trial
</a>
</div>
</div>
</div>
<div>
<span class="absolute left-0 top-0 z-[-1]">
<svg
width="189"
height="162"
viewBox="0 0 189 162"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<ellipse
cx="16"
cy="-16.5"
rx="173"
ry="178.5"
transform="rotate(180 16 -16.5)"
fill="url(#paint0_linear)"
/>
<defs>
<linearGradient
id="paint0_linear"
x1="-157"
y1="-107.754"
x2="98.5011"
y2="-106.425"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="white" stop-opacity="0.07" />
<stop offset="1" stop-color="white" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</span>
<span class="absolute bottom-0 right-0 z-[-1]">
<svg
width="191"
height="208"
viewBox="0 0 191 208"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<ellipse
cx="173"
cy="178.5"
rx="173"
ry="178.5"
fill="url(#paint0_linear)"
/>
<defs>
<linearGradient
id="paint0_linear"
x1="-3.27832e-05"
y1="87.2457"
x2="255.501"
y2="88.5747"
gradientUnits="userSpaceOnUse"
>
<stop stop-color="white" stop-opacity="0.07" />
<stop offset="1" stop-color="white" stop-opacity="0" />
</linearGradient>
</defs>
</svg>
</span>
</div>
</div>
</div>
</section>
<!-- ====== Call To Action Section End -->
</body>
</html>