Skip to content

Commit

Permalink
Remove twitter:image
Browse files Browse the repository at this point in the history
  • Loading branch information
morinokami committed Mar 3, 2024
1 parent b70c530 commit 16b7862
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export default function Home(props: PageProps<Item[]>) {
<meta name="twitter:creator" content="@onDemocracy" />
<meta name="twitter:title" content={SITE_TITLE} />
<meta name="twitter:description" content={DESCRIPTION} />
<meta name="twitter:image" content="/ogp.png" />
</Head>
<div class="bg-white pt-1 pb-3 px-3">
{items.map((item) => <ItemSummary item={item} />)}
Expand Down
1 change: 0 additions & 1 deletion routes/item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ export default function ItemPage(props: PageProps<Item>) {
<meta name="twitter:creator" content="@onDemocracy" />
<meta name="twitter:title" content={`${SITE_TITLE} | ${item.title}`} />
<meta name="twitter:description" content={DESCRIPTION} />
<meta name="twitter:image" content="/ogp.png" />
</Head>
<div class="bg-white pt-1 pb-3 px-3">
<div class="divide-y space-y-3">
Expand Down
1 change: 0 additions & 1 deletion routes/user.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export default function UserPage(props: PageProps<User>) {
<meta name="twitter:creator" content="@onDemocracy" />
<meta name="twitter:title" content={`${SITE_TITLE} | ${user.id}`} />
<meta name="twitter:description" content={DESCRIPTION} />
<meta name="twitter:image" content="/ogp.png" />
</Head>
<div class="bg-white pt-1 pb-3 px-3">
<ul class="my-1 text-sm">
Expand Down

0 comments on commit 16b7862

Please sign in to comment.