Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

Expand All @@ -18,6 +17,32 @@
.env.test.local
.env.production.local

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
*-lock.json
*.lock

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# Unused files
old
3 changes: 3 additions & 0 deletions NOTE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# My Portfolio website

Created with [vite](https://vitejs.dev/)
36 changes: 36 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="/react.svg" />

<!-- Site title -->
<title>codepraycode | Software engineer</title>

<!-- Google Fonts: Jost -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body class="bg-linear">
<a class="skip-to-content" href="#main">Skip to content</a>
<div id="particles-js">
<div id="root"></div>
</div>

<script type="module" src="/src/main.jsx"></script>

<!-- Import Particles.js and app.js files -->
<script src=
"/particlejs/particles.js">
</script>
<script src=
"/particlejs/demo/js/app.js">
</script>

</body>
</html>
Loading