https://github.com/naowalrahman/naowalrahman.github.io
This is my personal website and blog where I post things :)
https://github.com/naowalrahman/naowalrahman.github.io
css html personal-blog personal-website website
Last synced: over 1 year ago
JSON representation
This is my personal website and blog where I post things :)
- Host: GitHub
- URL: https://github.com/naowalrahman/naowalrahman.github.io
- Owner: naowalrahman
- Created: 2020-07-09T02:21:21.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-02-24T03:15:09.000Z (over 1 year ago)
- Last Synced: 2025-02-24T04:23:38.530Z (over 1 year ago)
- Topics: css, html, personal-blog, personal-website, website
- Language: JavaScript
- Homepage: https://naowalrahman.rocks/
- Size: 8.79 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# naowalrahman.github.io
This is my personal website/portfolio and blog where I post things :)
It makes use of React and Vite and a bunch of node modules which you can find in `package.json`. I hope you enjoy browsing through this code. Feel free to make a suggestion via the issues tab if you see any improvements that can be made!
Directory structure:
```
.
├── google6c9b641275c20e91.html
├── index.html
├── package-lock.json
├── package.json
├── public
│ └── blog-posts
│ ├── first-post.md
│ ├── index.json
│ └── second-post.md
├── README.md
├── src
│ ├── App.css
│ ├── App.jsx
│ ├── components
│ │ ├── Navbar.css
│ │ └── Navbar.jsx
│ ├── fonts
│ │ ├── fonts.css
│ │ ├── Reforma1918
│ │ ├── Reforma1969
│ │ ├── Reforma2018
│ │ └── 'Reforma webfonts.html'
│ ├── main.css
│ ├── main.jsx
│ ├── pages
│ │ ├── Blog.css
│ │ ├── Blog.jsx
│ │ ├── Home.css
│ │ ├── Home.jsx
│ │ ├── Projects.css
│ │ └── Projects.jsx
│ └── theme.js
└── vite.config.js`
```