small fix

This commit is contained in:
zyqunix 2025-05-11 11:52:37 +02:00
parent b909c7129d
commit e3d1554eed
No known key found for this signature in database
GPG key ID: 134A8DEEA83B80E6
5 changed files with 6 additions and 6 deletions

View file

@ -154,12 +154,12 @@ function generateSkillCards(skillData) {
});
}
fetch('lang.json')
fetch('assets/js/lang.json')
.then(response => response.json())
.then(generateLanguageCards)
.catch(error => console.error('Error fetching lang.json:', error));
fetch('skills.json')
fetch('assets/js/skills.json')
.then(response => response.json())
.then(generateSkillCards)
.catch(error => console.error('Error fetching skills.json', error));

View file

@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://cdn.jsdelivr.net/gh/0x5841524f4e/js-lanyard/lanyard.js"></script>
<title>zyq's Portfolio</title>
<link href="style.css" rel="stylesheet" />
<link href="assets/css/style.css" rel="stylesheet" />
<link rel="shortcut icon" href="https://rimgo.pussthecat.org/RFbdMMB.png" type="image/x-icon">
</head>
<body>
@ -111,13 +111,13 @@
<h4>Note: I do forget to add new sites there sometimes. So check the <a href="https://github.com/zyqunix/tools">GitHub</a> if you think there are some missing</h4>
</div>
<script src="index.js"></script>
<footer class="cards">
<p>© 2025 zyqunix. All rights reserved.</p>
<p>❤️ This website is open-source on <a href="https://github.com/zyqunix/tools" target="_blank">GitHub</a>.</p>
<p>✨ Inspired by <a href="https://vmohammad.dev" target="_blank">vMohammad's Portfolio</a>.</p>
<p>❤️ Made with love by zyqunix in Germany.</p>
</footer>
<script src="assets/js/index.js"></script>
</body>
</html>