Skip to content

Commit 06aca82

Browse files
Add initial GitHub Pages placeholder
0 parents  commit 06aca82

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

.nojekyll

Whitespace-only changes.

index.html

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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>GitHub Pages Placeholder</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
display: flex;
11+
justify-content: center;
12+
align-items: center;
13+
height: 100vh;
14+
margin: 0;
15+
background-color: #f5f5f5;
16+
}
17+
.container {
18+
text-align: center;
19+
padding: 2rem;
20+
background-color: white;
21+
border-radius: 8px;
22+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
23+
}
24+
h1 {
25+
color: #333;
26+
}
27+
p {
28+
color: #666;
29+
}
30+
</style>
31+
</head>
32+
<body>
33+
<div class="container">
34+
<h1>GitHub Pages Setup</h1>
35+
<p>This is a placeholder page for the Signal Analyzer app.</p>
36+
<p>The actual content will be deployed by the GitHub Actions workflow.</p>
37+
</div>
38+
</body>
39+
</html>

0 commit comments

Comments
 (0)