Skip to content

Commit 4acaa86

Browse files
committed
add some files
1 parent a94b5af commit 4acaa86

File tree

93 files changed

+12505
-1
lines changed

Some content is hidden

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

93 files changed

+12505
-1
lines changed

.gitignore

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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
12+
dist-ssr
13+
*.local
14+
.env
15+
16+
# Editor directories and files
17+
.vscode/*
18+
!.vscode/extensions.json
19+
.idea
20+
.DS_Store
21+
*.suo
22+
*.ntvs*
23+
*.njsproj
24+
*.sln
25+
*.sw?

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# portfolio
1+
# portfolio

index.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!-- Copyright (C), 2024-2025, William Ruan
2+
@author William Ruan
3+
FileName: index.html
4+
@Version: 1.0.0
5+
Creation: 26/11/2024
6+
Last modification: 26/11/2024-->
7+
8+
<!DOCTYPE html>
9+
<html lang="en">
10+
<head>
11+
<meta charset="UTF-8" />
12+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
13+
<link rel="icon" type="image/x-icon" href="/icon.png" />
14+
<script
15+
src="https://kit.fontawesome.com/69e14b7ae1.js"
16+
crossorigin="anonymous"
17+
></script>
18+
<link
19+
href="https://fonts.googleapis.com/css2?family=La+Belle+Aurore&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
20+
rel="stylesheet"
21+
/>
22+
<title>William</title>
23+
</head>
24+
<body>
25+
<div id="root"></div>
26+
<script type="module" src="/src/App/index.jsx"></script>
27+
<script src="https://cdn.rawgit.com/progers/pathseg/master/pathseg.js"></script>
28+
</body>
29+
</html>

0 commit comments

Comments
 (0)