site meta title and desc

This commit is contained in:
Desktop
2025-11-14 15:58:45 +05:00
parent fced34b1e4
commit e3542b568d
13 changed files with 275 additions and 25 deletions

View File

@@ -1,6 +1,8 @@
import React from "react";
import SectionHeading from "../components/SectionHeading";
import CTASection from "../components/CTASection";
import SEO from "../components/SEO";
import { getMetaTags } from "../config/metaTags";
const roadmapItems = [
{
@@ -19,7 +21,9 @@ const roadmapItems = [
const Waitlist: React.FC = () => {
return (
<div className="bg-gradient-to-b from-white via-slate-50/30 to-white text-slate-900">
<>
<SEO meta={getMetaTags("waitlist")} />
<div className="bg-gradient-to-b from-white via-slate-50/30 to-white text-slate-900">
<section className="max-w-4xl mx-auto px-6 pt-24 pb-12">
<SectionHeading
eyebrow="Roadmap preview"
@@ -100,7 +104,8 @@ const Waitlist: React.FC = () => {
primaryCta={{ label: "Start free", href: "https://app.igny8.com/signup" }}
secondaryCta={{ label: "Contact us", href: "/contact" }}
/>
</div>
</div>
</>
);
};