CheapStack starter kits include SEO metadata via Next.js generateMetadata or exported metadata objects on every page. Each page has unique title tags, meta descriptions, Open Graph tags (title, description, image, URL), Twitter cards (summary_large_image), canonical URLs, and JSON-LD structured data (Product, FAQPage, or Article schema depending on page type). The Landing Page Kit includes OG image generation.
export const metadata = {
title: "Page Title — Site Name",
description: "Meta description for search results",
openGraph: {
title: "OG Title",
description: "OG Description",
images: [{ url: "/og-image.png" }],
},
};