Skip to content

Commit 5c4a842

Browse files
committed
feat(website): add favicon and logo icon
1 parent b8106d2 commit 5c4a842

5 files changed

Lines changed: 34 additions & 2 deletions

File tree

website/apple-touch-icon.png

24 KB
Loading

website/css/site.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,13 @@ body {
105105
font-weight: 700;
106106
color: var(--text);
107107
text-decoration: none;
108+
display: flex;
109+
align-items: center;
110+
gap: 8px;
111+
}
112+
113+
.logo-icon {
114+
border-radius: 6px;
108115
}
109116

110117
nav {

website/favicon-32x32.png

2.23 KB
Loading

website/icon.svg

Lines changed: 23 additions & 0 deletions
Loading

website/index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<title>Arandu — A beautiful way to read Markdown</title>
77
<meta name="description" content="A minimal, elegant Markdown viewer for macOS, Linux, and Windows. GitHub Flavored Markdown, syntax highlighting, live reload, and outline navigation.">
8+
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
9+
<link rel="apple-touch-icon" href="apple-touch-icon.png">
810
<link rel="stylesheet" href="css/site.css">
911
</head>
1012
<body>
1113

1214
<header id="header">
1315
<div class="container header-inner">
14-
<a href="#" class="logo">Arandu</a>
16+
<a href="#" class="logo"><img src="icon.svg" alt="" width="28" height="28" class="logo-icon">Arandu</a>
1517
<nav>
1618
<a href="#features">Features</a>
1719
<a href="#download">Download</a>
@@ -210,7 +212,7 @@ <h3>Windows</h3>
210212

211213
<footer>
212214
<div class="container footer-inner">
213-
<span>&copy; 2025 Devitools</span>
215+
<span>&copy; 2026 Devitools</span>
214216
<a href="https://github.com/Devitools/arandu" target="_blank" rel="noopener">GitHub</a>
215217
</div>
216218
</footer>

0 commit comments

Comments
 (0)