Skip to content

Commit

Permalink
updated header seo
Browse files Browse the repository at this point in the history
  • Loading branch information
Nilanth committed Jan 1, 2022
1 parent 76f27bc commit 33866c2
Showing 1 changed file with 57 additions and 1 deletion.
58 changes: 57 additions & 1 deletion components/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,63 @@ export default function Header() {
<title>TwiterStats - Your Twitter Followers Tracker</title>
<link rel="icon" href="/ts-logo.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="description" content="TwiterStats - Your Twitter Followers Tracker"/>
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<title>
TwiterStats - Your Twitter Followers Tracker
</title>
<meta
name="description"
content="TwiterStats - Track twitter followers count in realtime and profile"
/>
<meta
name="keywords"
content="twiterstats, nilanth, twiter-stats,twitter follower counter, nextjs, next-auth, react, open source, github"
/>
<link rel="apple-touch-icon" href="/cover-image.png" />
<link rel="icon" href="/ts-logo.ico" />

{/* Primary Meta Tags */}
<meta
name="title"
content="TwiterStats - Your Twitter Followers Tracker"
/>
<meta
name="description"
content="TwiterStats - Track twitter followers count in realtime and profile"
/>

{/* Open Graph / Facebook */}
<meta property="og:type" content="website" />
<meta
property="og:title"
content="TwiterStats - Your Twitter Followers Tracker"
/>
<meta
property="og:description"
content="TwiterStats - Track twitter followers count in realtime and profile"
/>
<meta
property="og:image"
content="https://twiter-stats.vercel.app/cover-image.png"
/>

{/* Twitter */}
<meta property="twitter:card" content="summary_large_image" />
<meta
property="twitter:title"
content="TwiterStats - Your Twitter Followers Tracker"
/>
<meta
property="twitter:description"
content="TwiterStats - Track twitter followers count in realtime and profile"
/>
<meta
property="twitter:image"
content="https://twiter-stats.vercel.app/cover-image.png"
/>
</Head>
)
}

1 comment on commit 33866c2

@vercel
Copy link

@vercel vercel bot commented on 33866c2 Jan 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.