NovoCode commited on
Commit
28f5f99
·
verified ·
1 Parent(s): 5e4c1a5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -112
README.md CHANGED
@@ -1,112 +0,0 @@
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>Caretalk AI</title>
7
- <style>
8
- /* CSS Styles */
9
- :root {
10
- --text-color-light: #333;
11
- --text-color-dark: #fff;
12
- }
13
- body {
14
- font-family: Arial, sans-serif;
15
- margin: 0;
16
- padding: 0;
17
- color: var(--text-color-light); /* Default text color */
18
- background-color: #fff; /* Default background color */
19
- }
20
- /* Dark theme */
21
- @media (prefers-color-scheme: dark) {
22
- body {
23
- background-color: #222;
24
- color: var(--text-color-dark); /* Use white or light grey for text in dark theme */
25
- }
26
- }
27
- .container {
28
- max-width: 1200px;
29
- margin: 0 auto;
30
- padding: 40px;
31
- }
32
- .header {
33
- display: flex;
34
- justify-content: space-between;
35
- align-items: center;
36
- margin-bottom: 40px;
37
- }
38
- .header h1 {
39
- font-size: 36px;
40
- color: #0047AB;
41
- margin: 0;
42
- }
43
- .nav {
44
- display: flex;
45
- gap: 20px;
46
- }
47
- .nav a {
48
- color: #333;
49
- text-decoration: none;
50
- font-size: 18px;
51
- }
52
- .nav a:hover {
53
- color: #0047AB;
54
- }
55
- .hero {
56
- display: flex;
57
- align-items: center;
58
- margin-bottom: 60px;
59
- }
60
- .hero-content {
61
- flex: 1;
62
- padding-right: 40px;
63
- }
64
- .hero-content h2 {
65
- font-size: 48px;
66
- color: #0047AB;
67
- margin-top: 0;
68
- }
69
- .hero-content p {
70
- font-size: 20px;
71
- line-height: 1.5;
72
- margin-bottom: 30px;
73
- }
74
- .cta-button {
75
- display: inline-block;
76
- background-color: #0047AB;
77
- color: #fff;
78
- padding: 12px 24px;
79
- border-radius: 4px;
80
- text-decoration: none;
81
- font-size: 18px;
82
- }
83
- .cta-button:hover {
84
- background-color: #003A8C;
85
- }
86
- .hero-image img {
87
- height: 400px;
88
- width: 500px;
89
- }
90
- </style>
91
- </head>
92
- <body>
93
- <div class="container">
94
- <div class="header">
95
- <h1>Caretalk AI</h1>
96
- <nav class="nav">
97
- </nav>
98
- </div>
99
-
100
- <div class="hero">
101
- <div class="hero-content">
102
- <h2>Put Your Call Center on Autopilot</h2>
103
- <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>
104
- <a href="#" class="cta-button">Request Demo</a>
105
- </div>
106
- <div class="hero-image">
107
- <img src="https://caretalk.ai/wp-content/uploads/2024/03/caretalk-ai-hero-section-image.png" alt="Call Center Autopilot">
108
- </div>
109
- </div>
110
- </div>
111
- </body>
112
- </html>