diff --git a/app/layout.tsx b/app/layout.tsx index 6baf638..a5797ef 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -6,6 +6,7 @@ import type { Section } from "../components/SectionProvider"; import { Providers } from "./providers"; import "@/styles/tailwind.css"; +import logo from "@/images/branding/logo.webp"; import type { ReactNode } from "react"; export const metadata: Metadata = { @@ -18,9 +19,11 @@ export const metadata: Metadata = { openGraph: { type: "article", images: { - url: "https://cdn.versia.pub/branding/icon.svg", + url: logo.src, alt: "Versia logo", - type: "image/svg+xml", + type: "image/webp", + width: logo.width, + height: logo.height, }, }, }; diff --git a/images/branding/logo-full.webp b/images/branding/logo-full.webp deleted file mode 100644 index 26d297d..0000000 Binary files a/images/branding/logo-full.webp and /dev/null differ diff --git a/images/branding/logo.webp b/images/branding/logo.webp index b2d467e..7a98b8a 100644 Binary files a/images/branding/logo.webp and b/images/branding/logo.webp differ