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

@@ -14,6 +14,8 @@ import {
ChatBubbleLeftRightIcon,
} from "@heroicons/react/24/outline";
import { testimonials } from "../data/testimonials";
import SEO from "../components/SEO";
import { getMetaTags } from "../config/metaTags";
const Home: React.FC = () => {
const renderCta = (cta: { label: string; href: string }, className: string) => {
@@ -113,9 +115,11 @@ const Home: React.FC = () => {
];
return (
<div className="bg-white">
{/* HERO SECTION */}
<section className="relative overflow-hidden bg-gradient-to-br from-[var(--color-primary)] via-[var(--color-purple)] to-[#8b5cf6]">
<>
<SEO meta={getMetaTags("home")} />
<div className="bg-white">
{/* HERO SECTION */}
<section className="relative overflow-hidden bg-gradient-to-br from-[var(--color-primary)] via-[var(--color-purple)] to-[#8b5cf6]">
{/* Radial glow behind headline */}
<div className="absolute inset-0 bg-[radial-gradient(circle_at_30%_50%,rgba(255,255,255,0.1),transparent_60%)]" />
<div className="absolute inset-0 bg-[radial-gradient(circle_at_70%_20%,rgba(109,74,227,0.2),transparent_50%)]" />
@@ -489,7 +493,8 @@ const Home: React.FC = () => {
</div>
</div>
</section>
</div>
</div>
</>
);
};