https://github.com/moeki0/website
https://github.com/moeki0/website
react vite website
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/moeki0/website
- Owner: moeki0
- Created: 2024-11-24T09:45:36.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-03-24T13:32:19.000Z (3 months ago)
- Last Synced: 2026-05-06T22:11:47.830Z (about 1 month ago)
- Topics: react, vite, website
- Language: Astro
- Homepage: https://hackluckcat.com
- Size: 2.97 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Moeki Kawakami - Personal Website & Blog
This is my personal website and blog built with Astro.
## 🚀 Project Structure
```
.
├── public/ # Static assets
├── src/
│ ├── components/ # Astro/React/Vue/Svelte/Preact components
│ ├── content/ # Content collections (blog posts)
│ │ └── blog/ # Blog posts in Markdown
│ ├── layouts/ # Page layouts
│ ├── pages/ # Pages and routes
│ └── styles/ # Global styles
├── astro.config.mjs # Astro configuration
├── tailwind.config.js # Tailwind CSS configuration
└── package.json
```
## 🧞 Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
## ✍️ Writing Blog Posts
Create new blog posts in `src/content/blog/`:
```markdown
---
title: 'My Blog Post Title'
description: 'A brief description of my post'
pubDate: 2025-01-30
---
Your content here...
```
## 🎨 Styling
This project uses Tailwind CSS for styling. The configuration is in `tailwind.config.js`.
## 📝 License
© 2025 Moeki Kawakami. All rights reserved.