adding canonical tags in all pages and comment awards & testimonials from Hire talent and Industries

This commit is contained in:
priyanshuvish
2025-07-23 19:52:24 +05:30
parent cd8d88b4dd
commit 08d33fb2cf
86 changed files with 462 additions and 433 deletions

View File

@@ -17,11 +17,59 @@ import {
Eye, Star, Calendar, MessageSquare, Briefcase, Rocket,
ChevronRight
} from "lucide-react";
import { Helmet } from "react-helmet-async";
// Enhanced Hero Section
const HeroWithCTA = () => {
return (
<section className="relative py-20 overflow-hidden bg-black">
<Helmet>
{/* Page Title and Meta Description */}
<title>Company Overview | Technology Company with a Mission | WDI</title>
<meta
name="description"
content="Learn about WDIs mission, values, and people. Were a purpose-driven technology company helping enterprises achieve excellence through innovation."
/>
{/* Canonical Link */}
<link rel="canonical" href="https://www.wdipl.com/company" />
{/* Open Graph Tags (for Facebook, LinkedIn) */}
<meta property="og:title" content="Company Overview | Technology Company with a Mission | WDI" />
<meta
property="og:description"
content="Learn about WDIs mission, values, and people. Were a purpose-driven technology company helping enterprises achieve excellence through innovation."
/>
<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="Company Overview | Technology Company with a Mission | WDI" />
<meta
name="twitter:description"
content="Learn about WDIs mission, values, and people. Were a purpose-driven technology company helping enterprises achieve excellence through innovation."
/>
<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="grid lg:grid-cols-2 gap-16 items-center min-h-[90vh]">
<motion.div