Skip to content

Instantly share code, notes, and snippets.

@dhanar98
Created November 28, 2021 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dhanar98/30f293d73bf12fa57ab88f34c6b5abc4 to your computer and use it in GitHub Desktop.
Save dhanar98/30f293d73bf12fa57ab88f34c6b5abc4 to your computer and use it in GitHub Desktop.
Blog Snippet
import { ArticleJsonLd } from 'next-seo';
const Article = () => (
<>
<ArticleJsonLd
url="https://dhanar98.hashnode.dev/how-to-add-bootstrap-icons-in-next-js"
title="How to add bootstrap icons in next js"
images='https://example.com/photos/1x1/photo.jpg',
datePublished="2021-02-05T08:00:00+08:00"
dateModified="2021-02-05T09:00:00+08:00"
authorName="Dhanar98"
publisherName="Dhanasekaran R"
description="This is a mighty good description of this blog."
publisherLogo="https://www.example.com/photos/logo.jpg"
/>
</>
);
export default Article;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment