Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: updated package version to the latest #15

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 20 additions & 5 deletions components/Head.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,36 @@ export default function HeadComponent() {

<title>Solana Pay Store</title>
<meta name="title" content="Solana Pay Store" />
<meta name="description" content="Buy items on my store using Solana Pay!" />
<meta
name="description"
content="Buy items on my store using Solana Pay!"
/>

{/* Facebook */}
<meta property="og:type" content="website" />
<meta property="og:url" content="https://buildspace.so/" />
<meta property="og:title" content="Solana Pay Store" />
<meta property="og:description" content="Buy items on my store using Solana Pay!" />
<meta property="og:image" content="https://cdn.buildspace.so/courses/solana-pay/metadata.png" />
<meta
property="og:description"
content="Buy items on my store using Solana Pay!"
/>
<meta
property="og:image"
content="https://cdn.buildspace.so/courses/solana-pay/metadata.png"
/>

{/* Twitter */}
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://buildspace.so/" />
<meta property="twitter:title" content="Solana Pay Store" />
<meta property="twitter:description" content="Buy items on my store using Solana Pay!" />
<meta property="twitter:image" content="https://cdn.buildspace.so/courses/solana-pay/metadata.png" />
<meta
property="twitter:description"
content="Buy items on my store using Solana Pay!"
/>
<meta
property="twitter:image"
content="https://cdn.buildspace.so/courses/solana-pay/metadata.png"
/>
</Head>
);
}
2 changes: 1 addition & 1 deletion hooks/useIPFS.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const useIPFS = (hash, filename) => {
return `https://gateway.ipfscdn.io/ipfs/${hash}?filename=${filename}`
return `https://gateway.ipfscdn.io/ipfs/${hash}?filename=${filename}`;
};

export default useIPFS;
Loading