meta tags added in all pages
This commit is contained in:
@@ -24,6 +24,7 @@ import {
|
||||
Award,
|
||||
} from "lucide-react";
|
||||
import { navigateTo } from "../App";
|
||||
import { Helmet } from "react-helmet-async";
|
||||
|
||||
export const ClientTestimonials = () => {
|
||||
const [selectedIndustry, setSelectedIndustry] = useState("all");
|
||||
@@ -392,6 +393,53 @@ export const ClientTestimonials = () => {
|
||||
|
||||
{/* Hero Section */}
|
||||
<section className="pt-24 pb-16 bg-background">
|
||||
<Helmet>
|
||||
{/* Page Title and Meta Description */}
|
||||
<title>Client Reviews | AI App Development Success Stories</title>
|
||||
<meta
|
||||
name="description"
|
||||
content="See what clients say about WDI’s AI app development. Discover how startups and enterprises achieved success with our innovative digital products."
|
||||
/>
|
||||
|
||||
{/* Canonical Link */}
|
||||
<link rel="canonical" href="https://www.wdipl.com/services" />
|
||||
|
||||
{/* Open Graph Tags (for Facebook, LinkedIn) */}
|
||||
<meta property="og:title" content="Client Reviews | AI App Development Success Stories" />
|
||||
<meta
|
||||
property="og:description"
|
||||
content="See what clients say about WDI’s AI app development. Discover how startups and enterprises achieved success with our innovative digital products."
|
||||
/>
|
||||
<meta property="og:url" content="https://www.wdipl.com/services" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:image" content="https://www.wdipl.com/your-preview-image.jpg" />
|
||||
|
||||
{/* Twitter Card Tags */}
|
||||
<meta name="twitter:card" content="summary_large_image" />
|
||||
<meta name="twitter:title" content="Client Reviews | AI App Development Success Stories" />
|
||||
<meta
|
||||
name="twitter:description"
|
||||
content="See what clients say about WDI’s AI app development. Discover how startups and enterprises achieved success with our innovative digital products."
|
||||
/>
|
||||
<meta name="twitter:image" content="https://www.wdipl.com/your-preview-image.jpg" />
|
||||
|
||||
{/* Social Profiles (using JSON-LD Schema) */}
|
||||
<script type="application/ld+json">
|
||||
{`
|
||||
{
|
||||
"@context": "https://schema.org",
|
||||
"@type": "Organization",
|
||||
"name": "WDI",
|
||||
"url": "https://www.wdipl.com",
|
||||
"sameAs": [
|
||||
"https://www.facebook.com/wdideas",
|
||||
"https://www.linkedin.com/in/website-developers-india/",
|
||||
"https://www.instagram.com/wdipl/"
|
||||
]
|
||||
}
|
||||
`}
|
||||
</script>
|
||||
</Helmet>
|
||||
<div className="container mx-auto px-6 lg:px-8">
|
||||
<div className="max-w-4xl mx-auto text-center">
|
||||
<div className="flex items-center justify-center gap-2 mb-6">
|
||||
|
||||
Reference in New Issue
Block a user