Skip to content

Commit d5fd01e

Browse files
committed
Create index.html
1 parent b41b47c commit d5fd01e

File tree

387 files changed

+22945
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

387 files changed

+22945
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Deploy to GitHub Pages
2+
on:
3+
push:
4+
branches:
5+
- main
6+
jobs:
7+
deploy:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
- uses: actions/setup-node@v3
12+
with:
13+
node-version: 18
14+
- run: npm install
15+
- run: npm run build
16+
- uses: peaceiris/actions-gh-pages@v3
17+
with:
18+
github_token: ${{ secrets.GITHUB_TOKEN }}
19+
publish_dir: ./dist

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist-ssr
12+
*.local
13+
14+
# Editor directories and files
15+
.vscode/*
16+
!.vscode/extensions.json
17+
.idea
18+
.DS_Store
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Matteo
3+
Copyright (c) 2025 MATTEO MARSALA
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,25 @@
1-
# Matteos-Site
2-
My personal Website
1+
# 📱 Matteo Marsala - Personal Website
2+
3+
This is a personal website built using React.
4+
5+
The website is published on Github Pages using github actions.
6+
7+
## Getting Started
8+
9+
To run this project locally:
10+
11+
```bash
12+
# Clone the repo
13+
git clone https://github.com/ryansandbox/michael-ozkan-react-portfolio
14+
15+
# Navigate into the project
16+
cd michael-ozkan-react-portfolio
17+
18+
# Install dependencies
19+
npm install
20+
21+
# Start the development server
22+
npm run dev
23+
24+
### Notes
25+
- this website is inspireb by **Ryan Balieiro**.
206 KB
Binary file not shown.
116 KB
Binary file not shown.
24.9 KB
Binary file not shown.
66.5 KB
Binary file not shown.
155 KB
Binary file not shown.
416 KB
Binary file not shown.

0 commit comments

Comments
 (0)