Skip to content

Commit 0ef5c7e

Browse files
authored
Merge pull request #2 from ragibasif/vanilla
refactor: remove astro
2 parents b4b2058 + 8dfc44a commit 0ef5c7e

Some content is hidden

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

54 files changed

+392
-10044
lines changed

.github/workflows/deploy.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,4 @@ pnpm-debug.log*
2121
.DS_Store
2222

2323
# jetbrains setting folder
24-
.idea/
25-
26-
0000-post*
24+
.idea/

.vscode/extensions.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.vscode/launch.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

404.html

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta http-equiv="refresh" content="0; url=/" />
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Ragib Asif</title>
8+
<link rel="stylesheet" href="style.css" />
9+
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
10+
<script>
11+
window.location.href = "/";
12+
</script>
13+
</head>
14+
<body>
15+
<h1>404 Not Found</h1>
16+
<p>Redirecting to home…</p>
17+
</body>
18+
</html>
19+
20+

README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
11
# Ragib Asif
2-
3-
My personal [website](https://ragibasif.github.io/).
4-
5-
- [LinkedIn](https://www.linkedin.com/in/ragibasif/)
6-
- [GitHub](https://github.com/ragibasif)

astro.config.mjs

Lines changed: 0 additions & 27 deletions
This file was deleted.
File renamed without changes.

index.html

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Ragib Asif</title>
7+
<link rel="stylesheet" href="style.css" />
8+
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
9+
</head>
10+
<body>
11+
<h1>Ragib Asif</h1>
12+
<p>
13+
<a
14+
href="https://github.com/ragibasif"
15+
target="_blank"
16+
rel="noopener noreferrer"
17+
>GitHub</a
18+
>
19+
</p>
20+
<p>
21+
<a
22+
href="https://www.linkedin.com/in/ragibasif"
23+
target="_blank"
24+
rel="noopener noreferrer"
25+
>LinkedIn</a
26+
>
27+
</p>
28+
<p>
29+
<a
30+
href="https://www.youtube.com/@ragib_asif"
31+
target="_blank"
32+
rel="noopener noreferrer"
33+
>YouTube</a
34+
>
35+
</p>
36+
<p>
37+
<a
38+
href="mailto:[email protected]"
39+
target="_blank"
40+
rel="noopener noreferrer"
41+
>Email</a
42+
>
43+
</p>
44+
</body>
45+
</html>

0 commit comments

Comments
 (0)