Skip to content

Commit

Permalink
chore(explorer): add website metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
vplasencia committed Nov 27, 2024
1 parent 17b56c1 commit bee7bda
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 1 deletion.
Binary file added apps/explorer/public/apple-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions apps/explorer/public/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/explorer/public/social-media.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed apps/explorer/src/app/favicon.ico
Binary file not shown.
17 changes: 16 additions & 1 deletion apps/explorer/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,22 @@ const geistMono = localFont({

export const metadata: Metadata = {
title: "Semaphore Explorer",
description: "Discover Semaphore groups, view members and zero-knowledge proofs."
description: "Discover Semaphore groups, view members and zero-knowledge proofs.",
icons: { icon: "/icon.svg", apple: "/apple-icon.png" },
metadataBase: new URL("https://explorer.semaphore.pse.dev"),
openGraph: {
type: "website",
url: "https://explorer.semaphore.pse.dev",
title: "Semaphore Explorer",
description: "Discover Semaphore groups, view members and zero-knowledge proofs.",
siteName: "Semaphore Explorer",
images: [
{
url: "https://explorer.semaphore.pse.dev/social-media.png"
}
]
},
twitter: { card: "summary_large_image", images: "https://explorer.semaphore.pse.dev/social-media.png" }
}

export default function RootLayout({
Expand Down

0 comments on commit bee7bda

Please sign in to comment.