This is a Kamal Soni open source Project Colloborate Now
.
Nextjs Fast SEO is a plugin that streamlines SEO management for Next.js projects.
NextFastSeo
works by including it on pages where you would like SEO attributes to be added. Once included on the page you pass it a configuration object with the page's SEO properties. This can be dynamically generated at a page level or in some cases your API may return an SEO object.
First, install it:
npm i nextjs-fast-seo
or
yarn add nextjs-fast-seo
Then you need to import NextFastSeo
and add the desired properties. This will render out the tags in the <head>
for SEO. At a bare minimum, you should add a title and description.
Example with just title,keyword(optional) and description:
import { NextFastSeo } from 'nextjs-fast-seo';
const Page = () => (
<>
<NextFastSeo title="tesst-Collaborate"
description="Explore my contributions to the open source community as a skilled Frontend React Developer."
keyword="frontend development, react, web development, open source, collaboration, community"/>
<p>Testing Example</p>
</>
);
export default Page;