Skip to content
This repository was archived by the owner on Apr 4, 2026. It is now read-only.

Commit cbd96dd

Browse files
committed
feat: SecureChat Website v1.0
- Homepage with particles, tilt cards, live encryption demo, parallax, glitch text, Konami easter egg - How It Works page (5-step Double Ratchet walkthrough with animated SVGs) - Changelog page (live fetch from GitHub with loading skeleton) - Custom 404 page (void particles + cipher text animation) - Full SEO: sitemap, robots.txt, JSON-LD, OG image, Twitter Card - Favicons: SVG, apple-touch-icon, icon-192, icon-512, manifest.json - FR/EN language switcher on all pages - Phantom theme (dark + purple glassmorphism)
0 parents  commit cbd96dd

21 files changed

Lines changed: 7528 additions & 0 deletions

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# build output
2+
dist/
3+
# generated types
4+
.astro/
5+
6+
# dependencies
7+
node_modules/
8+
9+
# logs
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
pnpm-debug.log*
14+
15+
# environment variables
16+
.env
17+
.env.*
18+
!.env.example
19+
20+
# macOS-specific files
21+
.DS_Store
22+
23+
# jetbrains setting folder
24+
.idea/
25+
26+
# Windows
27+
Thumbs.db
28+
Desktop.ini
29+
30+
# VS Code (settings perso — on garde extensions.json)
31+
.vscode/*
32+
!.vscode/extensions.json
33+
34+
# Editor backups/temp
35+
*.swp
36+
*.swo
37+
*~
38+
*.bak
39+
40+
# OS generated
41+
*.orig

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

README.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Astro Starter Kit: Minimal
2+
3+
```sh
4+
npm create astro@latest -- --template minimal
5+
```
6+
7+
> 🧑‍🚀 **Seasoned astronaut?** Delete this file. Have fun!
8+
9+
## 🚀 Project Structure
10+
11+
Inside of your Astro project, you'll see the following folders and files:
12+
13+
```text
14+
/
15+
├── public/
16+
├── src/
17+
│ └── pages/
18+
│ └── index.astro
19+
└── package.json
20+
```
21+
22+
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
23+
24+
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
25+
26+
Any static assets, like images, can be placed in the `public/` directory.
27+
28+
## 🧞 Commands
29+
30+
All commands are run from the root of the project, from a terminal:
31+
32+
| Command | Action |
33+
| :------------------------ | :----------------------------------------------- |
34+
| `npm install` | Installs dependencies |
35+
| `npm run dev` | Starts local dev server at `localhost:4321` |
36+
| `npm run build` | Build your production site to `./dist/` |
37+
| `npm run preview` | Preview your build locally, before deploying |
38+
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
39+
| `npm run astro -- --help` | Get help using the Astro CLI |
40+
41+
## 👀 Want to learn more?
42+
43+
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).

astro.config.mjs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// @ts-check
2+
import { defineConfig } from 'astro/config';
3+
import sitemap from '@astrojs/sitemap';
4+
import tailwindcss from '@tailwindcss/vite';
5+
6+
// https://astro.build/config
7+
export default defineConfig({
8+
site: 'https://devbot667.github.io',
9+
base: '/SecureChat-Website',
10+
integrations: [sitemap()],
11+
vite: {
12+
plugins: [tailwindcss()]
13+
}
14+
});

0 commit comments

Comments
 (0)