SEO

SEO is a very important part of any website. It helps search engines understand what your website is about and how to index it.

Seo Component

Veloz kit provides reusable Seo component found in src/components/Seo.(tsx / tsx) which can be used to add meta tags to your website.

Usage

Simply add your site configurations details at src/data/site.(ts).


_10
// your site config data
_10
const SITE_CONFIG = {
_10
name: "Veloz",
_10
headline: "Veloz - Your SaaS Launchpad",
_10
description: "Ship faster with veloz.",
_10
keywords: "boilerplate, starter kit, saucecode",
_10
};

Then import Seo component into whatever page you want to add meta tags to.

app/page.tsx

_10
export default function Homepage() {
_10
return (
_10
<>
_10
<Seo title="Home page" description="Home page description" />
_10
<h1>Homepage</h1>
_10
</>
_10
);
_10
}

You can as well modify the seo metatags in src/components/Seo.(tsx / tsx) to suit your needs.

© Veloz 2024