-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlaunch.html
More file actions
87 lines (83 loc) · 2.62 KB
/
launch.html
File metadata and controls
87 lines (83 loc) · 2.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Launch AI Use Case Catalog</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #000000 0%, #373A36 100%);
color: white;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
padding: 20px;
}
.container {
background: white;
color: #000;
padding: 3rem;
border-radius: 10px;
max-width: 600px;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
h1 {
color: #C28E0E;
margin-bottom: 1rem;
}
p {
line-height: 1.6;
margin-bottom: 1rem;
color: #373A36;
}
.btn {
display: inline-block;
background: #C28E0E;
color: white;
padding: 1rem 2rem;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
margin-top: 1rem;
transition: all 0.3s ease;
}
.btn:hover {
background: #000;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.note {
background: #F5F5F5;
padding: 1rem;
border-left: 4px solid #CEB888;
margin-top: 1.5rem;
font-size: 0.9rem;
}
code {
background: #F5F5F5;
padding: 2px 6px;
border-radius: 3px;
font-family: 'Courier New', monospace;
}
</style>
</head>
<body>
<div class="container">
<h1>AI Use Case Catalog</h1>
<p><strong>Welcome!</strong> The website has been created successfully.</p>
<p>To view the catalog with full functionality (filtering and sorting):</p>
<ol>
<li>Open a command prompt in this directory</li>
<li>Run: <code>python -m http.server 8000</code></li>
<li>Open your browser to <code>http://localhost:8000</code></li>
</ol>
<a href="index.html" class="btn">Open Website (Limited Functionality)</a>
<div class="note">
<strong>Note:</strong> Opening directly from the file system may not enable filtering due to browser security restrictions. For best results, use a local web server as described above.
</div>
</div>
</body>
</html>