-
Notifications
You must be signed in to change notification settings - Fork 0
/
1725823356.052166.html
91 lines (91 loc) · 2.46 KB
/
1725823356.052166.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!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: #f4f4f4;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
.content {
background: #fff;
padding: 40px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
margin: 20px 0;
}
.content h2 {
margin-top: 0;
}
.cta {
text-align: center;
margin: 30px 0;
}
.cta a {
background: #007BFF;
color: #fff;
padding: 15px 30px;
text-decoration: none;
border-radius: 5px;
font-size: 1.2em;
}
.cta a:hover {
background: #0056b3;
}
footer {
text-align: center;
padding: 20px;
background: #333;
color: #fff;
}
footer a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
footer a:hover {
text-decoration: underline;
}
</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">
<h2>Welcome to Sundai</h2>
<p>Are you passionate about artificial intelligence? Do you have innovative ideas that you want to bring to life? Sundai is here to help you build and launch AI prototypes every Sunday. Join a community of like-minded individuals and turn your AI concepts into reality.</p>
<div class="cta">
<a href="#">Get Started</a>
</div>
</div>
</div>
<footer>
<div class="container">
<p>Made with <a href="https://landing-page-generator.github.io">LPG</a></p>
</div>
</footer>
</body>
</html>