@@ -24,16 +24,19 @@ const currentPath = Astro.url.pathname;
24
24
class =" h-10 w-10 object-contain"
25
25
style ={ { aspectRatio: " 802/666" }}
26
26
/>
27
- <span class =" text-2xl font-semibold tracking-tight" >Blankie</span >
27
+ <div class =" flex items-baseline" >
28
+ <span class =" text-2xl font-semibold tracking-tight" >Blankie</span >
29
+ <span class =" ml-3 text-xs tracking-tight" >for macOS</span >
30
+ </div >
28
31
</a >
29
-
30
32
<!-- Mobile menu button with hamburger icon -->
31
33
<button
32
- id =" mobile-menu-button"
34
+ id ="
35
+ mobile-menu-button"
33
36
aria-label =" Toggle navigation menu"
34
37
aria-expanded =" false"
35
38
aria-controls =" mobile-menu"
36
- class =" md:hidden text-white hover:text-primary-blue transition-colors duration-200 p-2"
39
+ class =" md:hidden text-white hover:text-yellow-500 transition-colors duration-200 p-2"
37
40
>
38
41
<svg
39
42
xmlns =" http://www.w3.org/2000/svg"
@@ -57,28 +60,28 @@ const currentPath = Astro.url.pathname;
57
60
<!-- Desktop Navigation -->
58
61
<div class =" hidden md:flex items-center gap-x-10" >
59
62
<a
60
- href =" /usage "
63
+ href =" /faq "
61
64
class:list ={ [
62
- " text-white text-sm hover:text-primary-blue transition-colors duration-200" ,
63
- { " text-primary-blue " : currentPath === " /usage " },
65
+ " text-white text-sm hover:text-yellow-500 transition-colors duration-200" ,
66
+ { " text-yellow-500 " : currentPath === " /faq " },
64
67
]}
65
68
>
66
- How to Use
69
+ FAQ
67
70
</a >
68
71
<a
69
72
href =" /privacy"
70
73
class:list ={ [
71
- " text-white text-sm hover:text-primary-blue transition-colors duration-200" ,
72
- { " text-primary-blue " : currentPath === " /privacy" },
74
+ " text-white text-sm hover:text-yellow-500 transition-colors duration-200" ,
75
+ { " text-yellow-500 " : currentPath === " /privacy" },
73
76
]}
74
77
>
75
78
Privacy
76
79
</a >
77
80
<a
78
81
href =" /credits"
79
82
class:list ={ [
80
- " text-white text-sm hover:text-primary-blue transition-colors duration-200" ,
81
- { " text-primary-blue " : currentPath === " /credits" },
83
+ " text-white text-sm hover:text-yellow-500 transition-colors duration-200" ,
84
+ { " text-yellow-500 " : currentPath === " /credits" },
82
85
]}
83
86
>
84
87
Credits
@@ -97,28 +100,28 @@ const currentPath = Astro.url.pathname;
97
100
<div id =" mobile-menu" class =" hidden md:hidden" >
98
101
<div class =" flex flex-col gap-y-4 pt-4 pb-6" >
99
102
<a
100
- href =" /usage "
103
+ href =" /faq "
101
104
class:list ={ [
102
- " text-white text-sm hover:text-primary-blue transition-colors duration-200" ,
103
- { " text-primary-blue " : currentPath === " /usage " },
105
+ " text-white text-sm hover:text-yellow-500 transition-colors duration-200" ,
106
+ { " text-yellow-500 " : currentPath === " /faq " },
104
107
]}
105
108
>
106
- How to Use
109
+ FAQ
107
110
</a >
108
111
<a
109
112
href =" /privacy"
110
113
class:list ={ [
111
- " text-white text-sm hover:text-primary-blue transition-colors duration-200" ,
112
- { " text-primary-blue " : currentPath === " /privacy" },
114
+ " text-white text-sm hover:text-yellow-500 transition-colors duration-200" ,
115
+ { " text-yellow-500 " : currentPath === " /privacy" },
113
116
]}
114
117
>
115
118
Privacy
116
119
</a >
117
120
<a
118
121
href =" /credits"
119
122
class:list ={ [
120
- " text-white text-sm hover:text-primary-blue transition-colors duration-200" ,
121
- { " text-primary-blue " : currentPath === " /credits" },
123
+ " text-white text-sm hover:text-yellow-500 transition-colors duration-200" ,
124
+ { " text-yellow-500 " : currentPath === " /credits" },
122
125
]}
123
126
>
124
127
Credits
0 commit comments