-
Notifications
You must be signed in to change notification settings - Fork 0
/
1725822882.958389.html
77 lines (77 loc) · 2.47 KB
/
1725822882.958389.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sundai: Building & Launching AI Prototypes Every Sunday</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #4CAF50;
color: white;
padding: 20px 0;
text-align: center;
}
.content {
padding: 20px;
background-color: white;
margin: 20px 0;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.content h1 {
color: #333;
}
.content p {
color: #666;
line-height: 1.6;
}
.cta-button {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
background-color: #4CAF50;
color: white;
text-decoration: none;
border-radius: 4px;
}
footer {
text-align: center;
padding: 20px 0;
background-color: #333;
color: white;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Sundai</h1>
<p>Building & Launching AI Prototypes Every Sunday</p>
</div>
</header>
<div class="container">
<div class="content">
<h1>Welcome to Sundai!</h1>
<p>At Sundai, we are passionate about artificial intelligence and innovation. Every Sunday, we build and launch new AI prototypes that push the boundaries of technology and creativity. Our goal is to provide you with cutting-edge AI solutions that can transform your business and daily life.</p>
<p>Join us on this exciting journey and explore the endless possibilities of AI. Whether you are a developer, entrepreneur, or just an AI enthusiast, Sundai has something for you. Stay tuned for our weekly releases and be the first to experience the future of AI.</p>
<a href="#" class="cta-button">Get Started</a>
</div>
</div>
<footer>
<div class="container">
<p>© 2023 Sundai. All rights reserved.</p>
</div>
</footer>
</body>
</html>