-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathindex.html
178 lines (155 loc) · 5.4 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
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
170
171
172
173
174
175
176
177
178
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="SVG Wave is a minimal svg wave generator with lot of customization. It lets you abiltiy to generate and export pngs and svgs of beautiful waves. SVG wave also lets you layer multiple waves. Create SVGs for your website designs." />
<meta name="title" content="Svg Wave - A free and beautiul gradient SVG wave Generator." />
<title>Svg Wave - A free & beautiful gradient SVG wave Generator.</title>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://www.svgwave.in" />
<meta property="og:title" content="Svg Wave - A free & beautiul gradient SVG wave Generator." />
<meta property="og:description"
content="SVG Wave is a minimal gradient svg wave generator with lot of customization. It lets you abiltiy to generate and export pngs and svgs of beautiful waves. SVG wave also lets you layer multiple waves. Create SVGs for your website designs." />
<meta property="og:image" content="https://svgwave.in/images/29cf875dd59e3301be675929e0ea67a8-3-01.svg" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://www.svgwave.in" />
<meta property="twitter:title" content="Get Waves – Create SVG waves for your next design" />
<meta property="twitter:description"
content="SVG Wave is a minimal gradient svg wave generator with lot of customization. It lets you abiltiy to generate and export pngs and svgs of beautiful waves. SVG wave also lets you layer multiple waves. Create SVGs for your website designs." />
<meta property="twitter:image" content="./assets/bg.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700;800&display=swap"
rel="stylesheet" />
<link rel="canonical" href="https://svgwave.in" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#00aba9">
<meta name="theme-color" content="#ffffff">
<link rel="icon" type="image/png" sizes="48x48" href="/favicon.ico">
<style>
.loader-container {
width: 100%;
height: 100vh;
background-color: #eee;
display: flex;
justify-content: center;
align-items: center;
}
.loader {
width: 100px;
height: 100px;
background-color: #4de6d4;
border-radius: 50%;
position: relative;
overflow: hidden;
}
.loader:after {
content: '';
position: absolute;
width: 100px;
height: 100px;
background-color: #fff;
}
.loader:before {
content: '';
position: absolute;
width: 100px;
height: 100px;
background-color: #fff;
}
.loader:before {
top: -40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.7);
animation: wave 5s linear infinite;
}
.loader:after {
top: -40px;
border-radius: 30%;
background: rgba(255, 255, 255, 0.3);
animation: wave 5s linear infinite;
}
@keyframes moveTheWave {
0% {
stroke-dashoffset: -3;
transform: translate3d(0, 0, 0);
}
100% {
stroke-dashoffset: -138;
transform: translate3d(-90px, 0, 0);
}
}
</style>
<style>
#carbonads {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Helvetica, Arial,
sans-serif;
max-width: 300px;
}
#carbonads>span {
display: block;
position: relative;
padding: 10px;
border-radius: 4px;
background-color: #fff;
box-shadow:
0 0 1px 1px hsla(0, 0%, 0%, 0.05),
0 0 2px 2px hsla(0, 0%, 0%, 0.05),
0 0 4px 4px hsla(0, 0%, 0%, 0.05);
}
#carbonads .carbon-wrap {
display: flex;
}
#carbonads .carbon-img {
margin-right: 10px;
line-height: 1;
}
#carbonads .carbon-text {
margin-bottom: 12px;
font-size: 12px;
line-height: 1.45;
text-decoration: none;
}
#carbonads .carbon-poweredby {
position: absolute;
bottom: 10px;
left: 152px;
font-size: 8px;
font-weight: 500;
line-height: 1;
text-decoration: none;
letter-spacing: 0.5px;
text-transform: uppercase;
}
#ds-callout {
justify-items: start;
}
@media screen and (max-width: 1440px) {
.callout {
width: 256px !important;
}
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-110192731-2"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {
dataLayer.push(arguments)
}
gtag('js', new Date())
gtag('config', 'UA-110192731-2')
</script>
</head>
<body>
<div id="app"></div>
</body>
<script type="module" src="/src/main.jsx"></script>
</html>