Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
|
@@ -7,4 +7,116 @@ sdk: static
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
+
<!DOCTYPE html>
|
| 11 |
+
<html lang="en">
|
| 12 |
+
<head>
|
| 13 |
+
<meta charset="UTF-8">
|
| 14 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 15 |
+
<title>Caretalk AI</title>
|
| 16 |
+
<style>
|
| 17 |
+
/* CSS Styles */
|
| 18 |
+
:root {
|
| 19 |
+
--text-color-light: #333;
|
| 20 |
+
--text-color-dark: #fff;
|
| 21 |
+
}
|
| 22 |
+
body {
|
| 23 |
+
font-family: Arial, sans-serif;
|
| 24 |
+
margin: 0;
|
| 25 |
+
padding: 0;
|
| 26 |
+
color: var(--text-color-light); /* Default text color */
|
| 27 |
+
background-color: #fff; /* Default background color */
|
| 28 |
+
}
|
| 29 |
+
/* Dark theme */
|
| 30 |
+
@media (prefers-color-scheme: dark) {
|
| 31 |
+
body {
|
| 32 |
+
background-color: #222;
|
| 33 |
+
color: var(--text-color-dark); /* Use white or light grey for text in dark theme */
|
| 34 |
+
}
|
| 35 |
+
}
|
| 36 |
+
.container {
|
| 37 |
+
max-width: 1200px;
|
| 38 |
+
margin: 0 auto;
|
| 39 |
+
padding: 40px;
|
| 40 |
+
}
|
| 41 |
+
.header {
|
| 42 |
+
display: flex;
|
| 43 |
+
justify-content: space-between;
|
| 44 |
+
align-items: center;
|
| 45 |
+
margin-bottom: 40px;
|
| 46 |
+
}
|
| 47 |
+
.header h1 {
|
| 48 |
+
font-size: 36px;
|
| 49 |
+
color: #0047AB;
|
| 50 |
+
margin: 0;
|
| 51 |
+
}
|
| 52 |
+
.nav {
|
| 53 |
+
display: flex;
|
| 54 |
+
gap: 20px;
|
| 55 |
+
}
|
| 56 |
+
.nav a {
|
| 57 |
+
color: #333;
|
| 58 |
+
text-decoration: none;
|
| 59 |
+
font-size: 18px;
|
| 60 |
+
}
|
| 61 |
+
.nav a:hover {
|
| 62 |
+
color: #0047AB;
|
| 63 |
+
}
|
| 64 |
+
.hero {
|
| 65 |
+
display: flex;
|
| 66 |
+
align-items: center;
|
| 67 |
+
margin-bottom: 60px;
|
| 68 |
+
}
|
| 69 |
+
.hero-content {
|
| 70 |
+
flex: 1;
|
| 71 |
+
padding-right: 40px;
|
| 72 |
+
}
|
| 73 |
+
.hero-content h2 {
|
| 74 |
+
font-size: 48px;
|
| 75 |
+
color: #0047AB;
|
| 76 |
+
margin-top: 0;
|
| 77 |
+
}
|
| 78 |
+
.hero-content p {
|
| 79 |
+
font-size: 20px;
|
| 80 |
+
line-height: 1.5;
|
| 81 |
+
margin-bottom: 30px;
|
| 82 |
+
}
|
| 83 |
+
.cta-button {
|
| 84 |
+
display: inline-block;
|
| 85 |
+
background-color: #0047AB;
|
| 86 |
+
color: #fff;
|
| 87 |
+
padding: 12px 24px;
|
| 88 |
+
border-radius: 4px;
|
| 89 |
+
text-decoration: none;
|
| 90 |
+
font-size: 18px;
|
| 91 |
+
}
|
| 92 |
+
.cta-button:hover {
|
| 93 |
+
background-color: #003A8C;
|
| 94 |
+
}
|
| 95 |
+
.hero-image img {
|
| 96 |
+
height: 400px;
|
| 97 |
+
width: 500px;
|
| 98 |
+
}
|
| 99 |
+
</style>
|
| 100 |
+
</head>
|
| 101 |
+
<body>
|
| 102 |
+
<div class="container">
|
| 103 |
+
<div class="header">
|
| 104 |
+
<h1>Caretalk AI</h1>
|
| 105 |
+
<nav class="nav">
|
| 106 |
+
</nav>
|
| 107 |
+
</div>
|
| 108 |
+
|
| 109 |
+
<div class="hero">
|
| 110 |
+
<div class="hero-content">
|
| 111 |
+
<h2>Put Your Call Center on Autopilot</h2>
|
| 112 |
+
<p>Answer patient calls, set appointments, and follow up autonomously. Converse naturally on any topic for up to 30 minutes – just like a human operator – with minimal setup and instant scaling.</p>
|
| 113 |
+
<a href="#" class="cta-button">Request Demo</a>
|
| 114 |
+
</div>
|
| 115 |
+
<div class="hero-image">
|
| 116 |
+
<img src="https://caretalk.ai/wp-content/uploads/2024/03/caretalk-ai-hero-section-image.png" alt="Call Center Autopilot">
|
| 117 |
+
</div>
|
| 118 |
+
</div>
|
| 119 |
+
</div>
|
| 120 |
+
</body>
|
| 121 |
+
</html>
|
| 122 |
+
|