feat: wire up BLBLogo and FBBanner as site icon and OG image

- favicon.ico, icon-192/512, apple-touch-icon → BLBLogo.png
- og:image + twitter:card image → FBBanner.png (OG image)
- Display BLBLogo in About section (replaces skull placeholder)
- Add Next/Image import and aboutLogo CSS class
This commit is contained in:
2026-04-10 01:13:05 -05:00
parent 3e65e1ad60
commit e616b6efe5
2 changed files with 16 additions and 1 deletions
+9 -1
View File
@@ -1,4 +1,5 @@
import Head from "next/head";
import Image from "next/image";
import styles from "@/styles/Home.module.css";
export default function Home() {
@@ -93,7 +94,14 @@ export default function Home() {
</p>
</div>
<div className={styles.aboutVisual}>
<span className={styles.aboutPlaceholder}>💀</span>
<Image
src="/blb-logo.png"
alt="Bone Lord Bob"
width={400}
height={600}
className={styles.aboutLogo}
priority
/>
</div>
</section>
+7
View File
@@ -253,6 +253,13 @@
opacity: 0.15;
}
.aboutLogo {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.aboutVisual::before {
content: '';
position: absolute;