Skip to content

Commit

Permalink
add metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenmarcus committed Mar 5, 2024
1 parent c004d97 commit 4df275d
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 3 deletions.
22 changes: 21 additions & 1 deletion nft-stripe-checkout/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,27 @@ import "./globals.css";
import { SocialMedias } from "@/components/social";

export const metadata: Metadata = {
title: "Fiat NFT checkout | Mintbase Template",
title: "Fiat NFT checkout | Mintbase Templates",
description: "Template for buying a NFT with Credit Card using Stripe",
openGraph: {
title: `Fiat NFT checkout | Mintbase Templates`,
description: "Template for buying a NFT with Credit Card using Stripe",
images: [
{
type: "image/png",
url: "https://i.imgur.com/9byWkpK.png",
width: "1200",
height: "630",
},
],
},
twitter: {
card: "summary_large_image",
title: `Fiat NFT checkout | Mintbase Templates`,
description: "Template for buying a NFT with Credit Card using Stripe",
creator: "Mintbase",
images: "https://i.imgur.com/9byWkpK.png",
},
};

export default function RootLayout({
Expand Down
25 changes: 23 additions & 2 deletions simple-token-drop/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
import type { Metadata } from "next";
import Minter from "./Minter";



export const metadata: Metadata = {
title: "Mintbase Airdrop",
description: "Claim a free nft",
title: "Token Airdrop | Mintbase Templates",
description: "Template for Token Drops",
openGraph: {
title: `Token Airdrop | Mintbase Templates`,
description: "Template for Token Drops",
images: [
{
type: "image/png",
url: "https://i.imgur.com/U5x0IdF.png",
width: "1200",
height: "630",
},
],
},
twitter: {
card: "summary_large_image",
title: `Token Airdrop | Mintbase Templates`,
description: "Template for Token Drops",
creator: "Mintbase",
images: "https://i.imgur.com/U5x0IdF.png",
},
};

export default function Home() {
Expand Down

0 comments on commit 4df275d

Please sign in to comment.