-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (119 loc) · 3.1 KB
/
index.html
File metadata and controls
124 lines (119 loc) · 3.1 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>HouseLearning Gists</title>
<script src="https://houselearning.org/cookiebanner.js"></script>
<script src="https://houselearning.org/feedback.js"></script>
<style>
body {
margin: 0;
font-family: system-ui, sans-serif;
background: #f5f7fb;
color: #1b1f29;
}
header {
background: #1b2a4a;
padding: 1rem 2rem;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
}
header a {
color: #dfe7ff;
text-decoration: none;
margin-left: 1rem;
}
.hero {
text-align: center;
padding: 4rem 1rem;
}
.hero h1 {
font-size: 3rem;
margin-bottom: 0.5rem;
}
.hero p {
font-size: 1.2rem;
color: #6b7280;
max-width: 600px;
margin: 0 auto 2rem;
}
.hero a {
background: #ffcf4a;
padding: 0.8rem 1.6rem;
border-radius: 8px;
color: #1b2a4a;
text-decoration: none;
font-weight: 600;
}
.features {
max-width: 900px;
margin: 3rem auto;
padding: 0 1rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.5rem;
}
.card {
background: white;
padding: 1.5rem;
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.card h3 {
margin-top: 0;
}
footer {
text-align: center;
padding: 2rem;
color: #6b7280;
}
</style>
</head>
<body>
<header>
<div class="logo">HouseLearning Gists</div>
<nav>
<a href="/blob.html">Upload</a>
<a href="/profile.html">Profile</a>
<a href="https://houselearning.org">Main Site</a>
</nav>
</header>
<section class="hero">
<h1>Share Your Ideas. Instantly.</h1>
<p>
HouseLearning Gists is a free, serverless file‑sharing platform built for students, developers, and creators.
Upload, share, fork, and explore — all powered by Firestore, with zero hosting costs.
</p>
<a href="/blob.html">Start Uploading</a>
</section>
<section class="features">
<div class="card">
<h3>⚡ Fast Uploads</h3>
<p>Upload files up to 15MB with chunked Firestore storage. No backend required.</p>
</div>
<div class="card">
<h3>🔗 Easy Sharing</h3>
<p>Share via email, copy link, or post directly to the HouseLearning Forum.</p>
</div>
<div class="card">
<h3>❤️ Likes & Follows</h3>
<p>Like gists, follow creators, and build your presence in the community.</p>
</div>
<div class="card">
<h3>🌍 Public or Private</h3>
<p>Choose visibility for each upload. Public gists appear in Trending and Feed.</p>
</div>
<div class="card">
<h3>🔁 Fork Anything</h3>
<p>Fork public gists into your own workspace and build on top of others’ ideas.</p>
</div>
<div class="card">
<h3>🧠 Zero Hosting Costs</h3>
<p>Runs entirely on Firestore’s free tier. Perfect for student and hobby projects.</p>
</div>
</section>
</body>
</html>