You've already forked zblade.dev
feat(layout): add logo image and favicon styling
This commit is contained in:
@@ -104,6 +104,19 @@ a {
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.logo-image {
|
||||||
|
height: 40px;
|
||||||
|
width: auto;
|
||||||
|
max-width: 180px;
|
||||||
|
display: block;
|
||||||
|
transition: transform 0.3s ease, filter 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo:hover .logo-image {
|
||||||
|
filter: drop-shadow(0 0 8px rgba(0, 221, 119, 0.4));
|
||||||
|
transform: scale(1.05);
|
||||||
|
}
|
||||||
|
|
||||||
.logo-line-1,
|
.logo-line-1,
|
||||||
.logo-line-2 {
|
.logo-line-2 {
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 195 KiB |
@@ -22,6 +22,9 @@ const { title, description = "AI-Native code editor built with Rust and Tauri. F
|
|||||||
<meta property="og:type" content="website" />
|
<meta property="og:type" content="website" />
|
||||||
<meta property="og:url" content="https://zblade.dev" />
|
<meta property="og:url" content="https://zblade.dev" />
|
||||||
|
|
||||||
|
<!-- Favicon -->
|
||||||
|
<link rel="icon" type="image/png" href="/zblade-logo.png" />
|
||||||
|
|
||||||
<!-- Fonts -->
|
<!-- Fonts -->
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||||
@@ -51,8 +54,7 @@ const { title, description = "AI-Native code editor built with Rust and Tauri. F
|
|||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="header-content">
|
<div class="header-content">
|
||||||
<a href="/" class="logo">
|
<a href="/" class="logo">
|
||||||
<span class="logo-line-1">ZAGUÁN</span>
|
<img src="/zblade-logo.png" alt="Zaguán Blade" class="logo-image" />
|
||||||
<span class="logo-line-2">BLADE</span>
|
|
||||||
</a>
|
</a>
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
<a href="/#features">Features</a>
|
<a href="/#features">Features</a>
|
||||||
|
|||||||
Reference in New Issue
Block a user