Skip to content

Commit a22affe

Browse files
committed
feat: Replace SVG icons with PNG images for the logo and hero sections and correct the stylesheet path.
1 parent e28b8f1 commit a22affe

File tree

1 file changed

+17
-31
lines changed

1 file changed

+17
-31
lines changed

index.html

Lines changed: 17 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
name="description"
99
content="A multi-platform, test-friendly food ordering sandbox designed for practicing UI + API automation (web + mobile) with deterministic chaos users and multi-market pricing."
1010
/>
11-
<link rel="stylesheet" href="docs/styles.css" />
11+
<link rel="stylesheet" href="./docs/styles.css" />
1212
<link rel="preconnect" href="https://fonts.googleapis.com" />
1313
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
1414
<link
@@ -24,24 +24,13 @@
2424

2525
<nav class="navbar">
2626
<div class="logo">
27-
<svg
28-
xmlns="http://www.w3.org/2000/svg"
27+
<img
28+
src="./frontend-mobile/assets/icon.png"
29+
alt="OmniPizza Logo"
2930
width="32"
3031
height="32"
31-
viewBox="0 0 24 24"
32-
fill="none"
33-
stroke="currentColor"
34-
stroke-width="2"
35-
stroke-linecap="round"
36-
stroke-linejoin="round"
37-
style="color: var(--primary)"
38-
>
39-
<path d="M15 11h.01"></path>
40-
<path d="M11 15h.01"></path>
41-
<path d="M16 16h.01"></path>
42-
<path d="m2 16 20 6-6-20A20 20 0 0 0 2 16"></path>
43-
<path d="M5.71 17.11a17.04 17.04 0 0 1 11.4-11.4"></path>
44-
</svg>
32+
style="border-radius: 8px"
33+
/>
4534
<span>OmniPizza</span>
4635
</div>
4736
<ul class="nav-links">
@@ -55,20 +44,17 @@
5544

5645
<header class="hero" id="about">
5746
<!-- Replaced app icon with a stylized symbol for OmniPizza -->
58-
<div class="hero-icon">
59-
<svg
60-
xmlns="http://www.w3.org/2000/svg"
61-
width="32"
62-
height="32"
63-
viewBox="0 0 24 24"
64-
fill="none"
65-
stroke="currentColor"
66-
stroke-width="2"
67-
stroke-linecap="round"
68-
stroke-linejoin="round"
69-
>
70-
<path d="M22 12h-4l-3 9L9 3l-3 9H2"></path>
71-
</svg>
47+
<div
48+
class="hero-icon"
49+
style="border: none; background: transparent; box-shadow: none"
50+
>
51+
<img
52+
src="./frontend-mobile/assets/icon.png"
53+
alt="OmniPizza Logo"
54+
width="64"
55+
height="64"
56+
style="border-radius: 16px; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2)"
57+
/>
7258
</div>
7359
<h1>OmniPizza — QA Testing Platform</h1>
7460
<p>

0 commit comments

Comments
 (0)