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

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +48 -17
index.html CHANGED
@@ -7,6 +7,7 @@
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">
@@ -17,45 +18,73 @@
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 {
@@ -67,16 +96,18 @@
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) {
 
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
+ <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
11
 
12
  <!-- Open Graph tags -->
13
  <meta property="og:title" content="WordLift AI SEO Agent - Your Marketing & SEO Assistant">
 
18
  <meta name="twitter:title" content="WordLift AI SEO Agent - Your Marketing & SEO Assistant">
19
  <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.">
20
  <style>
21
+ :root {
22
+ --white: #fff;
23
+ --white-01: hsla(0, 0%, 100%, .102);
24
+ --white-02: hsla(0, 0%, 100%, .2);
25
+ --white-03: hsla(0, 0%, 100%, .302);
26
+ --white-05: hsla(0, 0%, 100%, .502);
27
+ --white-07: hsla(0, 0%, 100%, .698);
28
+ --white-09: hsla(0, 0%, 100%, .898);
29
+ --neutral-50: #f6f6f7;
30
+ --neutral-800: #64676f;
31
+ --neutral-950: #191919;
32
+ --sky-500: #3452db;
33
+ --font-family-open-sauce: 'Open Sans', sans-serif;
34
+ --font-size-mobile-xl: 18px;
35
+ --font-weight-regular: 400;
36
+ --line-height-mobile-xl: 28px;
37
+ }
38
+
39
+ *, :after, :before {
40
  box-sizing: border-box;
41
+ -webkit-font-smoothing: antialiased;
42
+ -moz-osx-font-smoothing: grayscale;
43
+ text-rendering: auto !important;
44
  }
45
+
46
  body {
47
+ font-family: var(--font-family-open-sauce);
48
+ background-color: #000000;
49
+ color: var(--white);
50
+ display: flex;
51
+ flex-direction: column;
52
+ min-height: 100vh;
53
+ margin: 0;
54
+ padding: 0;
55
+ font-size: var(--font-size-mobile-xl);
56
+ line-height: var(--line-height-mobile-xl);
57
  }
58
 
59
  header {
60
+ padding: 2rem 1.5rem;
61
+ border-bottom: 1px solid var(--white-02);
 
62
  }
63
 
64
  h1 {
65
+ color: var(--white);
66
+ font-size: 2rem;
67
  text-align: center;
68
  max-width: 800px;
69
  margin: 0 auto;
70
+ font-weight: var(--font-weight-regular);
71
  }
72
 
73
  main {
74
+ flex: 1;
75
  padding: 2rem;
76
  max-width: 1200px;
77
  margin: 0 auto;
78
+ width: 100%;
79
  }
80
 
81
  .iframe-container {
82
  width: 100%;
83
  height: 80vh;
84
+ border: 1px solid var(--white-02);
85
  border-radius: 8px;
86
  overflow: hidden;
87
+ background: var(--white);
88
  }
89
 
90
  iframe {
 
96
  footer {
97
  padding: 1rem;
98
  text-align: center;
99
+ border-top: 1px solid var(--white-02);
100
+ color: var(--white-07);
101
  }
102
 
103
  footer a {
104
+ color: var(--sky-500);
105
  text-decoration: none;
106
+ transition: color 0.2s ease;
107
  }
108
 
109
  footer a:hover {
110
+ color: var(--white);
111
  }
112
 
113
  @media (max-width: 768px) {