Skip to content
Open
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
28 changes: 28 additions & 0 deletions archive/cards/archive_27.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "Mistu",
"contacts": [
{
"icon": "fab fa-github",
"link": "https://github.com/<your-github-username>",
"handle": "@<your-github-username>"
}
],
"about": "I am a student learning web development and open-source. I love building projects and improving my coding skills.",
"resources": [
{
"title": "Frontend Resources",
"link": "https://www.w3schools.com/",
"text": "Best place for beginners to learn HTML, CSS & JS"
},
{
"title": "JavaScript Learning",
"link": "https://javascript.info/",
"text": "Full JavaScript tutorial"
},
{
"title": "Practice Coding",
"link": "https://leetcode.com/",
"text": "Solve coding problems to improve logic"
}
]
}
4 changes: 4 additions & 0 deletions assets/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ numberOfFilesArray.forEach(number => {
})
.finally(() => countUp())
})
const banner = document.createElement("div");
banner.className = "retro-banner";
banner.innerHTML = `<span>🚀 Welcome to the 2000s Retro Theme Website! 🚀</span>`;
document.body.prepend(banner);

// Prompt to archive when there are too many cards
const showInfoInConsole = () => {
Expand Down
Loading