Skip to content

Commit 72f5617

Browse files
committed
style: change blog page's right panel fonts
1 parent 560e6ff commit 72f5617

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/pages/BlogPage.jsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ const BlogPage = () => {
184184
type="text"
185185
value={searchQuery}
186186
onChange={(e) => setSearchQuery(e.target.value)}
187-
placeholder="SEARCH_INTEL..."
187+
placeholder="Search Blogposts..."
188188
className="bg-transparent border-none outline-none text-[10px] font-mono uppercase tracking-widest text-white placeholder-gray-600 w-full"
189189
/>
190190
{searchQuery && (
@@ -261,10 +261,10 @@ const BlogPage = () => {
261261
</div>
262262

263263
<div className="flex flex-col gap-4">
264-
<h2 className="text-4xl font-black text-white uppercase tracking-tighter leading-none">
264+
<h2 className="text-6xl md:text-7xl font-instr-serif text-white uppercase tracking-normal leading-none">
265265
{activePost.title}
266266
</h2>
267-
<p className="text-lg text-gray-300 font-light leading-relaxed max-w-xl">
267+
<p className="text-lg text-gray-300 font-syne leading-relaxed max-w-xl">
268268
{activePost.description ||
269269
'Archived content from the digital vault. Processed and cataloged for immediate access.'}
270270
</p>
@@ -316,10 +316,10 @@ const BlogPage = () => {
316316
? `/blog/series/${activePost.slug}`
317317
: `/blog/${activePost.slug}`
318318
}
319-
className="inline-flex items-center gap-4 text-white border-b-2 border-emerald-500 pb-2 hover:bg-emerald-500 hover:text-black transition-all px-1"
319+
className="inline-flex items-center gap-4 text-white border-b-2 border-emerald-500 pb-2 hover:bg-emerald-500 hover:text-black transition-all px-2 py-2"
320320
>
321-
<span className="text-sm font-black uppercase tracking-[0.2em]">
322-
Read_Post
321+
<span className="text-sm font-syne font-normal uppercase tracking-[0.2em]">
322+
Read Post
323323
</span>
324324
<BookOpen weight="bold" size={20} />
325325
</Link>

0 commit comments

Comments
 (0)