Skip to content

Instantly share code, notes, and snippets.

View alex-streza's full-sized avatar
🦊
Likely coding

Alex Streza alex-streza

🦊
Likely coding
View GitHub Profile
@alex-streza
alex-streza / Meta.tsx
Created February 3, 2022 10:42
Simple Meta component to boost NextJS SEO
import { NextSeo } from "next-seo";
import Head from "next/head";
import { useRouter } from "next/router";
type IMetaProps = {
title: string;
description: string;
image?: string;
canonical?: string;
};