Spaces:
Running
Running
Update index.html
Browse files- index.html +112 -19
index.html
CHANGED
@@ -1,19 +1,112 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>WordLift AI SEO Agent - Your Marketing & SEO Assistant</title>
|
7 |
+
<meta name="description" content="Experience the WordLift AI SEO Agent - An intelligent marketing assistant that helps optimize your content, improve rankings, and drive organic traffic. Try our advanced SEO automation tool today!">
|
8 |
+
<meta name="keywords" content="SEO, AI SEO Agent, SEO Agent, marketing agent, AI marketing assistant, content optimization, WordLift">
|
9 |
+
<link rel="canonical" href="https://wordlift.io/agent/">
|
10 |
+
|
11 |
+
<!-- Open Graph tags -->
|
12 |
+
<meta property="og:title" content="WordLift AI SEO Agent - Your Marketing & SEO Assistant">
|
13 |
+
<meta property="og:description" content="Experience the WordLift AI SEO Agent - An intelligent marketing assistant that helps optimize your content, improve rankings, and drive organic traffic.">
|
14 |
+
<meta property="og:url" content="https://wordlift.io/agent/">
|
15 |
+
|
16 |
+
<!-- Twitter Card tags -->
|
17 |
+
<meta name="twitter:title" content="WordLift AI SEO Agent - Your Marketing & SEO Assistant">
|
18 |
+
<meta name="twitter:description" content="Experience the WordLift AI SEO Agent - An intelligent marketing assistant that helps optimize your content, improve rankings, and drive organic traffic.">
|
19 |
+
<style>
|
20 |
+
* {
|
21 |
+
margin: 0;
|
22 |
+
padding: 0;
|
23 |
+
box-sizing: border-box;
|
24 |
+
}
|
25 |
+
|
26 |
+
body {
|
27 |
+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
|
28 |
+
background-color: #ffffff;
|
29 |
+
line-height: 1.6;
|
30 |
+
}
|
31 |
+
|
32 |
+
header {
|
33 |
+
background-color: #ffffff;
|
34 |
+
padding: 1.5rem;
|
35 |
+
border-bottom: 1px solid #eaeaea;
|
36 |
+
}
|
37 |
+
|
38 |
+
h1 {
|
39 |
+
color: #1a1a1a;
|
40 |
+
font-size: 1.75rem;
|
41 |
+
text-align: center;
|
42 |
+
max-width: 800px;
|
43 |
+
margin: 0 auto;
|
44 |
+
}
|
45 |
+
|
46 |
+
main {
|
47 |
+
padding: 2rem;
|
48 |
+
max-width: 1200px;
|
49 |
+
margin: 0 auto;
|
50 |
+
}
|
51 |
+
|
52 |
+
.iframe-container {
|
53 |
+
width: 100%;
|
54 |
+
height: 80vh;
|
55 |
+
border: 1px solid #eaeaea;
|
56 |
+
border-radius: 8px;
|
57 |
+
overflow: hidden;
|
58 |
+
background: #ffffff;
|
59 |
+
}
|
60 |
+
|
61 |
+
iframe {
|
62 |
+
width: 100%;
|
63 |
+
height: 100%;
|
64 |
+
border: none;
|
65 |
+
}
|
66 |
+
|
67 |
+
footer {
|
68 |
+
padding: 1rem;
|
69 |
+
text-align: center;
|
70 |
+
border-top: 1px solid #eaeaea;
|
71 |
+
}
|
72 |
+
|
73 |
+
footer a {
|
74 |
+
color: #0066cc;
|
75 |
+
text-decoration: none;
|
76 |
+
}
|
77 |
+
|
78 |
+
footer a:hover {
|
79 |
+
text-decoration: underline;
|
80 |
+
}
|
81 |
+
|
82 |
+
@media (max-width: 768px) {
|
83 |
+
main {
|
84 |
+
padding: 1rem;
|
85 |
+
}
|
86 |
+
|
87 |
+
.iframe-container {
|
88 |
+
height: 70vh;
|
89 |
+
}
|
90 |
+
|
91 |
+
h1 {
|
92 |
+
font-size: 1.5rem;
|
93 |
+
}
|
94 |
+
}
|
95 |
+
</style>
|
96 |
+
</head>
|
97 |
+
<body>
|
98 |
+
<header>
|
99 |
+
<h1>WordLift AI SEO Agent - Your Marketing Assistant</h1>
|
100 |
+
</header>
|
101 |
+
|
102 |
+
<main>
|
103 |
+
<div class="iframe-container">
|
104 |
+
<iframe src="https://agent.wordlift.io" allow="microphone"></iframe>
|
105 |
+
</div>
|
106 |
+
</main>
|
107 |
+
|
108 |
+
<footer>
|
109 |
+
<p>Powered by <a href="https://wordlift.io" target="_blank" rel="noopener">WordLift</a></p>
|
110 |
+
</footer>
|
111 |
+
</body>
|
112 |
+
</html>
|