Skip to content

Commit c3270ab

Browse files
committed
✨ Add 'Metis' Brand Name to Logo
🏷️ Brand Enhancement: - Added 'Metis' as HTML text next to M icon - Used h1 element styled as h4 for proper navbar proportions - Applied Bootstrap classes: fw-bold text-primary - Perfect alignment with d-flex align-items-center 🎨 Design Details: - Clean separation: M icon + spacing + Metis text - Consistent styling across index.html and forms.html - Professional typography with primary brand color - Maintains responsive design and accessibility 🚀 Result: - Professional brand identity: M icon + 'Metis' name - Clean, readable typography in navbar - Consistent branding across all pages - SEO-friendly with proper h1 heading structure
1 parent aa1e0fc commit c3270ab

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

src-modern/forms.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@
2424
<nav class="navbar navbar-expand-lg navbar-light bg-white border-bottom fixed-top">
2525
<div class="container-fluid">
2626
<!-- Logo/Brand - First on the left -->
27-
<a class="navbar-brand me-3" href="/index.html">
28-
<img src="/assets/images/logo.svg" alt="Logo" height="32" class="d-inline-block align-text-top">
27+
<a class="navbar-brand me-3 d-flex align-items-center" href="/index.html">
28+
<img src="/assets/images/logo.svg" alt="Logo" height="32" class="d-inline-block align-text-top me-2">
29+
<h1 class="h4 mb-0 fw-bold text-primary">Metis</h1>
2930
</a>
3031

3132
<!-- Sidebar Toggle Button -->

src-modern/index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,9 @@
5252
<nav class="navbar navbar-expand-lg navbar-light bg-white border-bottom">
5353
<div class="container-fluid">
5454
<!-- Logo/Brand - Now first on the left -->
55-
<a class="navbar-brand me-3" href="/">
56-
<img src="/assets/images/logo.svg" alt="Logo" height="32" class="d-inline-block align-text-top">
55+
<a class="navbar-brand me-3 d-flex align-items-center" href="/">
56+
<img src="/assets/images/logo.svg" alt="Logo" height="32" class="d-inline-block align-text-top me-2">
57+
<h1 class="h4 mb-0 fw-bold text-primary">Metis</h1>
5758
</a>
5859

5960
<!-- Sidebar Toggle - Now after logo -->

0 commit comments

Comments
 (0)