Skip to content

Commit 5d252cd

Browse files
committed
Try fix loading, nits
1 parent fa3a799 commit 5d252cd

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

app/about/friends/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function FriendsPage() {
1010
Back to About
1111
</Link>
1212
</div>
13-
<h1 className="text-2xl font-semibold mb-6">My friends</h1>
13+
<h1 className="text-2xl font-semibold mb-8">My friends</h1>
1414
<p className="text-lg">You are, my friend :)</p>
1515
</div>
1616
</main>

app/about/music/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function MusicPage() {
99
Back to About
1010
</Link>
1111
</div>
12-
<h1 className="text-2xl font-semibold mb-6">Music I love</h1>
12+
<h1 className="text-2xl font-semibold mb-8">Music I love</h1>
1313

1414
<div className="flex flex-col gap-16">
1515

app/about/photos/page.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ export default function PhotosPage() {
99
Back to About
1010
</Link>
1111
</div>
12-
<h1 className="text-2xl font-semibold mb-6">My Photos</h1>
12+
<h1 className="text-2xl font-semibold mb-8">My Photos</h1>
13+
14+
<div className="md:w-1/3 text-sm text-zinc-700 mb-8">
15+
<p>Yes, that thing is my logo.</p>
16+
</div>
1317

1418
<div className="flex flex-col gap-16">
1519
<div className="flex flex-col md:flex-row gap-8 items-start">

app/globals.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@
1717
body {
1818
color: var(--foreground);
1919
background: var(--background);
20-
font-family: 'JetBrains Mono', monospace;
2120
}

app/layout.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ const jetbrainsMono = localFont({
2525
style: 'italic',
2626
}
2727
],
28-
variable: '--font-jetbrains-mono'
28+
variable: '--font-jetbrains-mono',
29+
display: 'block'
2930
})
3031

3132
export const metadata: Metadata = {

0 commit comments

Comments
 (0)