Skip to content

Commit 545f334

Browse files
committed
Replace image logos with SVG text in header and footer
Replaced the image logos in the header and footer of the website with SVG text logos. The changes were made in `FooterBar.razor` and `HeaderBar.razor`. An additional image tag without a source attribute was added to `FooterBar.razor`, which might be an error as it will not display anything.
1 parent 4023505 commit 545f334

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

WebApp/Components/Layout/FooterBar.razor

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
<footer class='eshop-footer'>
22
<div class='eshop-footer-content'>
33
<div class='eshop-footer-row'>
4-
<img role="presentation" src='images/logo-footer.svg' class='logo logo-footer' />
4+
<svg width="200" height="100" xmlns="http://www.w3.org/2000/svg">
5+
<text x="10" y="50" font-family="Verdana" font-size="23" fill="white">SeattleU eShop</text>
6+
</svg>
7+
<img role="presentation" class='logo logo-footer' />
58
<p>© SeattleU eShop</p>
69
</div>
710
</div>

WebApp/Components/Layout/HeaderBar.razor

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
<div class="eshop-header-container">
1111
<nav class="eshop-header-navbar">
1212
<a class="logo logo-header" href="">
13-
<img alt="SeattleU eShop" src="images/logo-header.svg" class="logo logo-header" />
13+
<svg width="200" height="100" xmlns="http://www.w3.org/2000/svg">
14+
<text x="10" y="50" font-family="Verdana" font-size="24" fill="black">SeattleU eShop</text>
15+
</svg>
16+
1417
</a>
1518

1619
<UserMenu />

0 commit comments

Comments
 (0)