Skip to content

Commit f44fdee

Browse files
committed
Formating and small updates
1 parent 361c30c commit f44fdee

Some content is hidden

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

52 files changed

+10541
-6076
lines changed

README.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -61,20 +61,7 @@ npm start
6161

6262
The application will be available at http://localhost:3000
6363

64-
### Component Structure
6564

66-
The project follows a modular component structure:
67-
68-
```
69-
src/
70-
├── components/
71-
│ ├── LastFMTrack/ # Music integration
72-
│ ├── GithubRepos/ # GitHub repository display
73-
│ ├── LoadingFox/ # Loading states
74-
│ └── ParallaxEffect/ # Visual effects
75-
├── App.tsx # Main application component
76-
└── index.tsx # Application entry point
77-
```
7865

7966
## 🌐 Deployment
8067

index.html

Lines changed: 37 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,39 @@
1-
<!DOCTYPE html>
1+
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
6-
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Exo+2:wght@300;400;600&display=swap" rel="stylesheet">
7-
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
8-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
9-
<title>EndofTimee</title>
10-
<meta name="description" content="EndofTimee's personal site – ProtoFox, developer, streamer, and more. Featuring a unique boot animation and fox-themed design." />
11-
<meta property="og:title" content="EndofTimee – ProtoFox Personal Site" />
12-
<meta property="og:description" content="EndofTimee's personal site – ProtoFox, developer, streamer, and more. Featuring a unique boot animation and fox-themed design." />
13-
<meta property="og:type" content="website" />
14-
<meta property="og:url" content="https://endoftimee.com/" />
15-
<meta property="og:image" content="/logo.svg" />
16-
<meta property="og:image:alt" content="Fox Logo" />
17-
<meta property="og:site_name" content="EndofTimee" />
18-
<meta name="twitter:card" content="summary_large_image" />
19-
<meta name="twitter:title" content="EndofTimee – ProtoFox Personal Site" />
20-
<meta name="twitter:description" content="EndofTimee's personal site – ProtoFox, developer, streamer, and more. Featuring a unique boot animation and fox-themed design." />
21-
<meta name="twitter:image" content="/logo.svg" />
22-
</head>
23-
<body>
24-
<div id="root"></div>
25-
<script type="module" src="/src/index.tsx"></script>
26-
</body>
27-
</html>
3+
<head>
4+
<meta charset="UTF-8" />
285

6+
<link
7+
href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Exo+2:wght@300;400;600&display=swap"
8+
rel="stylesheet"
9+
/>
10+
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
11+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
12+
<title>EndofTimee</title>
13+
<meta
14+
name="description"
15+
content="EndofTimee's personal site – developer, streamer, and more. Featuring a unique boot animation and fox-themed design."
16+
/>
17+
<meta property="og:title" content="EndofTimee – Personal Site" />
18+
<meta
19+
property="og:description"
20+
content="EndofTimee's personal site – developer, streamer, and more. Featuring a unique boot animation and fox-themed design."
21+
/>
22+
<meta property="og:type" content="website" />
23+
<meta property="og:url" content="https://endoftimee.com/" />
24+
<meta property="og:image" content="/logo.svg" />
25+
<meta property="og:image:alt" content="Fox Logo" />
26+
<meta property="og:site_name" content="EndofTimee" />
27+
<meta name="twitter:card" content="summary_large_image" />
28+
<meta name="twitter:title" content="EndofTimee – Personal Site" />
29+
<meta
30+
name="twitter:description"
31+
content="EndofTimee's personal site – Developer, streamer, and more. Featuring a unique boot animation and fox-themed design."
32+
/>
33+
<meta name="twitter:image" content="/logo.svg" />
34+
</head>
35+
<body>
36+
<div id="root"></div>
37+
<script type="module" src="/src/index.tsx"></script>
38+
</body>
39+
</html>

0 commit comments

Comments
 (0)