forked from TailGrids/tailwind-ui-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcta.html
169 lines (168 loc) · 4.97 KB
/
cta.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!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="py-20 lg:py-[120px]">
<div class="container">
<div
class="
bg-primary
relative
rounded
overflow-hidden
py-12
px-8
md:p-[70px]
z-10
"
>
<div class="flex flex-wrap items-center -mx-4">
<div class="w-full lg:w-1/2 px-4">
<span class="text-white text-base font-semibold mb-2">
Find Your Next Dream App
</span>
<h2
class="
text-white
font-bold
text-3xl
sm:text-[38px]
leading-tight
mb-6
sm:mb-8
lg:mb-0
"
>
Get started with <br class="hidden xs:block" />
our free trial
</h2>
</div>
<div class="w-full lg:w-1/2 px-4">
<div class="flex flex-wrap lg:justify-end">
<a
href="javascript:void(0)"
class="
inline-block
py-4
px-6
md:px-9
lg:px-6
xl:px-9
rounded
text-base
font-medium
bg-white bg-opacity-[15%]
text-white
hover:bg-opacity-100 hover:text-primary
mr-4
my-1
transition
"
>
Get Pro Version
</a>
<a
href="javascript:void(0)"
class="
inline-block
py-4
px-6
md:px-9
lg:px-6
xl:px-9
rounded
text-base
font-medium
bg-[#13C296]
transition
hover:bg-opacity-90
text-white
my-1
"
>
Start Free Trial
</a>
</div>
</div>
</div>
<div>
<span class="absolute top-0 left-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>