Skip to content

Commit

Permalink
fix login
Browse files Browse the repository at this point in the history
  • Loading branch information
scobru committed Dec 9, 2023
1 parent 6a36a78 commit 9051b9a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/nextjs/components/MetaHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const baseUrl = process.env.NEXT_PUBLIC_VERCEL_URL ? `https://${process.env.NEXT
export const MetaHeader = ({
title = "Nostr3",
description = "Link Web3 with Nostr",
image = "nostr3.png",
image = "thumbnail.png",
twitterCard = "summary_large_image",
children,
}: MetaHeaderProps) => {
Expand Down Expand Up @@ -45,7 +45,7 @@ export const MetaHeader = ({
</>
)}
{twitterCard && <meta name="twitter:card" content={twitterCard} />}
<link rel="icon" type="image/png" sizes="32x32" href="/nostr3.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/thumbnail.png" />
{children}
</Head>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Home: NextPage = () => {
return (
<div className="flex items-center flex-col flex-grow pt-10 w-full sm:w-4/5 md:w-3/4 lg:w-3/6 mx-auto">
<MetaHeader />

<div className="w-full">
<Image className="mb-12 mx-auto" src="/assets/nostr3.png" width={400} height={400} alt="nostr3"></Image>
<div className="m-5 mx-auto w-5/6">
Expand Down

0 comments on commit 9051b9a

Please sign in to comment.