Skip to content

Commit e764c14

Browse files
committed
style: standard blog post page font fixes
1 parent d49ceb2 commit e764c14

File tree

4 files changed

+1011
-593
lines changed

4 files changed

+1011
-593
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fezcodex",
3-
"version": "0.8.7",
3+
"version": "0.8.9",
44
"private": true,
55
"homepage": "https://fezcode.com",
66
"dependencies": {

public/posts/5-ways-to-pass-arguments-in-a-url.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# 5 Ways to Pass Arguments in a URL (Beyond the Basic Query)
2-
31
When building web applications or designing APIs, understanding how to transfer data is crucial. While **Query Parameters** (the bits after the `?`) are the most common method, there are four other fundamental ways to pass arguments to a server via a URL or its associated HTTP request.
42

53
Here is a quick reference guide to the five main argument passing mechanisms:

src/pages/StandardBlogPostPage.jsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ const StandardBlogPostPage = () => {
241241
</span>
242242
</div>
243243

244-
<h1 className="text-4xl md:text-7xl font-black uppercase tracking-tighter text-white leading-none max-w-5xl">
244+
<h1 className="text-4xl md:text-7xl font-medium font-playfairDisplay uppercase tracking-tighter text-white leading-none max-w-5xl">
245245
{post.attributes.title}
246246
</h1>
247247
</div>
@@ -252,8 +252,9 @@ const StandardBlogPostPage = () => {
252252
<div className="lg:col-span-8">
253253
<div
254254
className="prose prose-invert prose-lg max-w-none
255-
prose-headings:font-sans prose-headings:uppercase prose-headings:tracking-tight prose-headings:font-bold prose-headings:text-white
256-
prose-p:text-gray-400 prose-p:font-sans prose-p:leading-relaxed
255+
prose-headings:font-sans prose-headings:uppercase prose-headings:tracking-tight prose-headings:font-medium prose-headings:text-white
256+
prose-p:text-gray-400 prose-p:font-arvo prose-p:leading-relaxed
257+
prose-li:font-arvo
257258
prose-a:text-emerald-400 prose-a:underline prose-a:decoration-emerald-500/30 prose-a:underline-offset-4 hover:prose-a:decoration-emerald-400
258259
prose-code:text-emerald-300 prose-code:font-mono prose-code:bg-white/5 prose-code:px-1 prose-code:rounded-sm
259260
prose-pre:bg-transparent prose-pre:border-none prose-pre:p-0

0 commit comments

Comments
 (0)