Skip to content

Instantly share code, notes, and snippets.

@dhanar98
Created November 28, 2021 17:25
Show Gist options
  • Save dhanar98/63cfbbf1f35ff7ab3450d878bad77d07 to your computer and use it in GitHub Desktop.
Save dhanar98/63cfbbf1f35ff7ab3450d878bad77d07 to your computer and use it in GitHub Desktop.
Breadcrumbs Snippet
import { BreadcrumbJsonLd } from 'next-seo';
const BreadCrumbs = () => (
<>
<BreadcrumbJsonLd
itemListElements={[
{
position: 1,
name: 'Home',
item: 'https://dhanar98.hashnode.dev/',
},
{
position: 2,
name: 'Visual Studio Code',
item: 'https://dhanar98.hashnode.dev/visual-studio-code',
}
]}
/>
</>
);
export default BreadCrumbs;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment