Skip to content

Commit

Permalink
feat(website): add website metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
vplasencia committed Nov 7, 2023
1 parent b556784 commit 5d4802a
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 1 deletion.
Binary file added apps/website/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/website/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/website/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/website/src/app/favicon.ico
Binary file not shown.
16 changes: 15 additions & 1 deletion apps/website/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,21 @@ import Providers from "./providers"

export const metadata: Metadata = {
title: "Semaphore",
description: "A zero-knowledge protocol for anonymous signaling on Ethereum."
description: "A zero-knowledge protocol for anonymous signaling on Ethereum.",
icons: { icon: "/icon.svg", apple: "/apple-icon.png" },
openGraph: {
type: "website",
url: "semaphore.pse.dev",
title: "Semaphore",
description: "A zero-knowledge protocol for anonymous signaling on Ethereum.",
siteName: "Semaphore",
images: [
{
url: "/social-media.png"
}
]
},
twitter: { card: "summary_large_image", images: "/social-media.png" }
}

export default function RootLayout({ children }: { children: React.ReactNode }) {
Expand Down

0 comments on commit 5d4802a

Please sign in to comment.