cyberandy commited on
Commit
b8f9a09
·
verified ·
1 Parent(s): 8f26287

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +112 -19
index.html CHANGED
@@ -1,19 +1,112 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>