Created
November 28, 2021 18:12
-
-
Save dhanar98/30f293d73bf12fa57ab88f34c6b5abc4 to your computer and use it in GitHub Desktop.
Blog Snippet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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