changing repo links
All checks were successful
Homepage Build and Deploy / Build Homepage Image (push) Successful in 10m22s
Homepage Build and Deploy / Deploy Homepage (push) Successful in 38s

This commit is contained in:
2025-10-29 19:19:35 -03:00
parent cac350db1a
commit e0366bf29d
2 changed files with 2 additions and 5 deletions

View File

@@ -6,7 +6,6 @@
<meta name="description" content="ivanch's personal portfolio showcasing projects and homelab setup.">
<meta name="author" content="ivanch">
<!-- Mobile optimization -->
<meta name="format-detection" content="telephone=no">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
@@ -29,10 +28,8 @@
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css" rel="stylesheet">
</head>
<body>
<!-- Matrix-like background animation -->
<canvas class="matrix-canvas" id="matrixCanvas"></canvas>
<!-- Main hero section -->
<main class="main-container">
<div class="glass hero-card">
<div class="profile-container">
@@ -114,7 +111,7 @@
<div class="project-title">
<span>Vision Start</span>
<span class="project-icons">
<a href="https://git.ivanch.me/ivanch/vision-start" class="project-icon-link" target="_blank" title="GitHub">
<a href="https://github.com/ivanch/vision-start" class="project-icon-link" target="_blank" title="GitHub">
<i class="ri-github-fill"></i>
</a>
</span>

View File

@@ -35,7 +35,7 @@ class MatrixBackground {
}
getMobileMaxConnections() {
// Reduce max connections on mobile devices
// Reduce max connections on mobile devices for better performance
if (window.innerWidth <= 480) return 4;
if (window.innerWidth <= 768) return 6;
return 8;