Skip to content

Commit 66f07ba

Browse files
committed
Initial commit
0 parents  commit 66f07ba

File tree

12 files changed

+2894
-0
lines changed

12 files changed

+2894
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

LICENSE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Copyright 2025 DuskyElf
2+
3+
Licensed under the Apache License, Version 2.0 (the "License");
4+
you may not use this file except in compliance with the License.
5+
You may obtain a copy of the License at
6+
7+
http://www.apache.org/licenses/LICENSE-2.0
8+
9+
Unless required by applicable law or agreed to in writing, software
10+
distributed under the License is distributed on an "AS IS" BASIS,
11+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
See the License for the specific language governing permissions and
13+
limitations under the License.

README.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Segfault Club Landing Page
2+
3+
### Quickstart
4+
5+
1. Clone:
6+
```
7+
git clone https://github.com/segfault-club/segfault-club.github.io.git
8+
cd segfault-club.github.io
9+
```
10+
2. Install dependencies:
11+
```
12+
npm install
13+
```
14+
3. Run locally:
15+
```
16+
npm run dev
17+
```
18+
Visit [http://localhost:3000](http://localhost:3000).
19+
20+
## Stack
21+
22+
- SolidJS
23+
- Vite
24+
- TypeScript
25+
- TailwindCSS
26+
- Prettier
27+
28+
## Why Solid, not Svelte?
29+
30+
Could've used Svelte. Chose Solid because it's what I know best.
31+
32+
## Notice
33+
34+
Licensed under [Apache-2.0](./LICENSE).
35+
36+
## Community
37+
38+
Linux, debugging, chaos, segfaults. Join us: [discord.gg/gohar](https://discord.gg/gohar)

index.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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" />
6+
<meta name="theme-color" content="#000000" />
7+
<link rel="preconnect" href="https://fonts.googleapis.com" />
8+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
9+
<link
10+
href="https://fonts.googleapis.com/css2?family=Asimovian&display=swap"
11+
rel="stylesheet"
12+
/>
13+
<title>Segfault Club</title>
14+
</head>
15+
<body>
16+
<noscript>You need to enable JavaScript to run this app.</noscript>
17+
<div id="root"></div>
18+
19+
<script src="/src/index.tsx" type="module"></script>
20+
</body>
21+
</html>

0 commit comments

Comments
 (0)