Skip to content

Commit adc84b2

Browse files
committed
index
1 parent 8f017ee commit adc84b2

1 file changed

Lines changed: 69 additions & 0 deletions

File tree

docs/index.html

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
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>Open Gallery - Welcome</title>
7+
<style>
8+
body {
9+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
10+
margin: 0;
11+
padding: 0;
12+
background: #fafafa;
13+
color: #333;
14+
display: flex;
15+
justify-content: center;
16+
align-items: center;
17+
height: 100vh;
18+
}
19+
20+
.container {
21+
max-width: 600px;
22+
text-align: center;
23+
padding: 2rem;
24+
background: white;
25+
border-radius: 12px;
26+
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
27+
}
28+
29+
h1 {
30+
font-size: 2rem;
31+
margin-bottom: 1rem;
32+
}
33+
34+
p {
35+
font-size: 1.1rem;
36+
line-height: 1.6;
37+
}
38+
39+
a {
40+
display: inline-block;
41+
margin-top: 1.5rem;
42+
padding: 0.6rem 1.1rem;
43+
font-size: 1rem;
44+
text-decoration: none;
45+
color: white;
46+
background: #007bff;
47+
border-radius: 6px;
48+
transition: background 0.2s ease;
49+
}
50+
51+
a:hover {
52+
background: #005fcc;
53+
}
54+
</style>
55+
</head>
56+
<body>
57+
<div class="container">
58+
<h1>Welcome to Open Gallery</h1>
59+
<p>
60+
Open Gallery is a simple Chrome extension that lets you save and explore
61+
your favorite artworks locally.
62+
</p>
63+
64+
<a href="https://github.com/andy-jdl/OpenGallery-BrowserExtension" target="_blank">
65+
View on GitHub
66+
</a>
67+
</div>
68+
</body>
69+
</html>

0 commit comments

Comments
 (0)