feat(seo): add OpenGraph social share card thumbnail and favicon app icons

This commit is contained in:
2026-08-29 17:28:18 -07:00
parent 4b86136ee2
commit d63011c01e
90 changed files with 107 additions and 48 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

+36 -2
View File
@@ -2,11 +2,41 @@ import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
metadataBase: new URL("https://wise-hearted-decor.pages.dev"),
title: "Wise Hearted Event Decor | Luxury Balloon Styling & Event Design",
description: "Creating beautiful spaces and memorable events through God-given creativity. Luxury balloon styling, arched backdrops, and custom decor with faith, beauty, purpose, and love.",
keywords: "Event Decor, Luxury Balloon Garlands, Backdrop Rentals, Wedding Decor, Birthday Balloon Stylist, Wise Hearted Decor",
keywords: "Event Decor, Luxury Balloon Garlands, Backdrop Rentals, Wedding Decor, Birthday Balloon Stylist, Wise Hearted Decor, Jackie Event Decor",
authors: [{ name: "Wise Hearted Event Decor" }],
icons: {
icon: "/images/logo_seal.png",
icon: [
{ url: "/favicon.ico" },
{ url: "/icon.png", type: "image/png", sizes: "512x512" },
],
apple: [
{ url: "/apple-icon.png", sizes: "512x512", type: "image/png" },
],
},
openGraph: {
title: "Wise Hearted Event Decor | Called to Create. Enabled by God.",
description: "Transforming lifes most cherished celebrations with luxury balloon styling, custom arched backdrops, and bespoke event decor.",
url: "https://wise-hearted-decor.pages.dev",
siteName: "Wise Hearted Event Decor",
images: [
{
url: "/opengraph-image.png",
width: 1200,
height: 630,
alt: "Wise Hearted Event Decor Logo & Brand Banner",
},
],
locale: "en_US",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "Wise Hearted Event Decor | Luxury Balloon Styling",
description: "Transforming lifes most cherished celebrations with luxury balloon styling, custom arched backdrops, and bespoke event decor.",
images: ["/twitter-image.png"],
},
};
@@ -17,6 +47,10 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<head>
<link rel="icon" href="/favicon.ico" sizes="any" />
<link rel="apple-touch-icon" href="/apple-icon.png" />
</head>
<body>{children}</body>
</html>
);
Binary file not shown.

After

Width:  |  Height:  |  Size: 216 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 KiB