mirror of
https://github.com/versia-pub/blog.git
synced 2025-12-06 16:48:18 +01:00
17 lines
431 B
TypeScript
17 lines
431 B
TypeScript
|
|
import { defineImage, defineOrganization } from "#imports";
|
||
|
|
|
||
|
|
export const logo = defineImage({
|
||
|
|
"@id": "https://versia.pub/#logo",
|
||
|
|
url: "https://cdn.versia.pub/branding/png/icon.png",
|
||
|
|
width: 1024,
|
||
|
|
height: 1024,
|
||
|
|
caption: "A couple of white stars on a pink rounded square.",
|
||
|
|
});
|
||
|
|
|
||
|
|
export const org = defineOrganization({
|
||
|
|
name: "Versia",
|
||
|
|
logo: logo["@id"],
|
||
|
|
url: "https://versia.pub",
|
||
|
|
sameAs: [],
|
||
|
|
});
|