this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add opengraph

+33
apps/nextjs/public/graysky.png

This is a binary file and will not be displayed.

+33
apps/nextjs/src/app/layout.tsx
··· 1 1 import { Providers } from "./providers"; 2 2 import "~/styles/globals.css"; 3 3 4 + export const metadata = { 5 + title: "Graysky - a bluesky client", 6 + description: "Experience a whole different skyline. Join the waitlist.", 7 + openGraph: { 8 + title: "Graysky - a bluesky client", 9 + description: "Experience a whole different skyline. Join the waitlist.", 10 + type: "website", 11 + locale: "en_GB", 12 + url: "https://graysky.app", 13 + siteName: "Graysky", 14 + images: [ 15 + { 16 + url: "https://graysky.app/graysky.png", 17 + width: 1024, 18 + height: 1024, 19 + }, 20 + ], 21 + }, 22 + twitter: { 23 + card: "summary_large_image", 24 + title: "Graysky - a bluesky client", 25 + description: "Experience a whole different skyline. Join the waitlist.", 26 + images: [ 27 + { 28 + url: "https://graysky.app/graysky.png", 29 + width: 1024, 30 + height: 1024, 31 + }, 32 + ], 33 + }, 34 + colorScheme: "dark", 35 + }; 36 + 4 37 export default function RootLayout({ children }: React.PropsWithChildren) { 5 38 return ( 6 39 <html>