Skip to content

Commit

Permalink
fix: remove og data for now
Browse files Browse the repository at this point in the history
  • Loading branch information
anuraglol committed Feb 1, 2022
1 parent 2f3eb7b commit 85f85a9
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,29 @@ function MyApp({ Component, pageProps }: AppProps) {
return (
<>
<NextSeo
title={`Sponsor ${data.name}`}
titleTemplate={`Sponsor ${data.name}`}
defaultTitle={`Sponsor ${data.name}`}
description={`A website for sponsoring ${data.name}`}
canonical="https://www.avneesh.tech/"
openGraph={{
url: "https://www.avneesh.tech/",
title: `Sponsor ${data.name}`,
description: `A website for sponsoring ${data.name}`,
images: [
{
url: "/og-image.png",
width: 800,
height: 420,
alt: `Sponsor ${data.name}`,
},
],
}}
twitter={{
handle: "@avneesh0612",
site: "@avneesh0612",
cardType: "summary_large_image",
}}
title={`Sponsor Anurag`}
// titleTemplate={`Sponsor ${data.name}`}
// defaultTitle={`Sponsor ${data.name}`}
// description={`A website for sponsoring ${data.name}`}
// canonical="https://www.avneesh.tech/"
// openGraph={{
// url: "https://www.avneesh.tech/",
// title: `Sponsor ${data.name}`,
// description: `A website for sponsoring ${data.name}`,
// images: [
// {
// url: "/og-image.png",
// width: 800,
// height: 420,
// alt: `Sponsor ${data.name}`,
// },
// ],
// }}
// twitter={{
// handle: "@avneesh0612",
// site: "@avneesh0612",
// cardType: "summary_large_image",
// }}
/>
<ChakraProvider>
<Component {...pageProps} />
Expand Down

1 comment on commit 85f85a9

@vercel
Copy link

@vercel vercel bot commented on 85f85a9 Feb 1, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.