img change with file

This commit is contained in:
2025-06-24 04:12:16 +00:00
parent 85ded5e1bd
commit a6f214b7c1
4 changed files with 7 additions and 21 deletions

View File

@@ -1,8 +1,8 @@
{ {
"hash": "360505b2", "hash": "0b41d04c",
"configHash": "e02d0b93", "configHash": "ed920e43",
"lockfileHash": "8c8db67b", "lockfileHash": "8c8db67b",
"browserHash": "9b2b2e41", "browserHash": "cc0adab7",
"optimized": {}, "optimized": {},
"chunks": {} "chunks": {}
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -4,20 +4,6 @@ export function initHomePage() {
homePage.innerHTML = ` homePage.innerHTML = `
<div class="app">
<!-- Floating Navigation -->
<nav class="floating-nav" id="floatingNav">
<div class="nav-items">
<a href="#dashboard" class="nav-item active" data-section="dashboard">
<span class="nav-icon">🚀</span>
<span class="nav-text">Dashboard</span>
</a>
<a href="#footer" class="nav-item" data-section="footer">
<span class="nav-icon">📞</span>
<span class="nav-text">Contact</span>
</a>
</div>
</nav>
<!-- Dashboard Section --> <!-- Dashboard Section -->
<section class="dashboard-section" id="dashboard"> <section class="dashboard-section" id="dashboard">
@@ -79,7 +65,7 @@ export function initHomePage() {
<div class="service-card" data-category="applications"> <div class="service-card" data-category="applications">
<div class="card-header"> <div class="card-header">
<div class="app-logo"> <div class="app-logo">
<img src="/asserts/Dwinzologo.png" alt="App Logo" /> <img src="/asserts/Dwinzo-logo-2.png" alt="App Logo" />
</div> </div>
<h4>Dwinzo-Demo App</h4> <h4>Dwinzo-Demo App</h4>
<div class="service-status"> <div class="service-status">

View File

@@ -88,7 +88,7 @@ function startIntroAnimation() {
let statusIndex = 0 let statusIndex = 0
const loadingInterval = setInterval(() => { const loadingInterval = setInterval(() => {
progress += Math.random() * 12 + 3 progress += Math.random() * 15 + 3
if (progress >= 100) { if (progress >= 100) {
progress = 100 progress = 100
@@ -116,5 +116,5 @@ function startIntroAnimation() {
statusItems[statusIndex].classList.add('active') statusItems[statusIndex].classList.add('active')
statusIndex++ statusIndex++
} }
}, 150) }, 180)
} }