-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #997 from SimplementeCao/fix-972
Fix: Remove footer from the home page
- Loading branch information
Showing
2 changed files
with
48 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import type { Metadata, Viewport } from "next"; | ||
|
||
export const metadata: Metadata = { | ||
title: "Starknet Quest", | ||
description: | ||
"Starknet Quest helps protocols attract and retain users by creating gamified quest experiences on Starknet.", | ||
metadataBase: process.env.NEXT_PUBLIC_APP_LINK | ||
? new URL(process.env.NEXT_PUBLIC_APP_LINK) | ||
: undefined, | ||
openGraph: { | ||
title: "Starknet Quest - Accomplish quests to get unique NFTs.", | ||
description: | ||
"Starknet Quest helps protocols attract and retain users by creating gamified quest experiences on Starknet.", | ||
url: process.env.NEXT_PUBLIC_APP_LINK, | ||
siteName: "Starknet Quest", | ||
images: [ | ||
{ | ||
url: "/visuals/starknetquest.webp", | ||
width: 680, | ||
height: 680, | ||
}, | ||
], | ||
locale: "en_US", | ||
type: "website", | ||
}, | ||
icons: { | ||
icon: "/visuals/starknetquestLogo.svg", | ||
}, | ||
twitter: { | ||
card: "summary_large_image", | ||
title: "Starknet Quest - Accomplish quests to get unique NFTs.", | ||
description: | ||
"Starknet Quest helps protocols attract and retain users by creating gamified quest experiences on Starknet.", | ||
images: ["/visuals/starknetquest.webp"], | ||
}, | ||
}; | ||
|
||
export const viewport: Viewport = { | ||
themeColor: "#6affaf", | ||
}; |