meta tags added in all pages
This commit is contained in:
@@ -10,16 +10,64 @@ import { SplitCallToAction } from "../components/SplitCallToAction";
|
||||
import { Card, CardContent } from "../components/ui/card";
|
||||
import { Badge } from "../components/ui/badge";
|
||||
import { Button } from "../components/ui/button";
|
||||
import {
|
||||
Sprout, CloudRain, BarChart3, Thermometer, Eye,
|
||||
Database, Bot, Target, CheckCircle, Star,
|
||||
import {
|
||||
Sprout, CloudRain, BarChart3, Thermometer, Eye,
|
||||
Database, Bot, Target, CheckCircle, Star,
|
||||
Zap, Shield, Globe, Award, Satellite
|
||||
} from "lucide-react";
|
||||
import { Helmet } from "react-helmet-async";
|
||||
|
||||
// Problem Solution Block Component
|
||||
const ProblemSolutionBlock = () => {
|
||||
return (
|
||||
<section className="py-20 bg-[#0E0E0E]">
|
||||
<Helmet>
|
||||
{/* Page Title and Meta Description */}
|
||||
<title>AgriTech Platform Development Services | WDI</title>
|
||||
<meta
|
||||
name="description"
|
||||
content="WDI builds custom AgriTech Platforms that empower farmers and agribusinesses with smart, data-driven tools to enhance productivity, sustainability, and growth."
|
||||
/>
|
||||
|
||||
{/* Canonical Link */}
|
||||
<link rel="canonical" href="https://www.wdipl.com/services" />
|
||||
|
||||
{/* Open Graph Tags (for Facebook, LinkedIn) */}
|
||||
<meta property="og:title" content="AgriTech Platform Development Services | WDI" />
|
||||
<meta
|
||||
property="og:description"
|
||||
content="WDI builds custom AgriTech Platforms that empower farmers and agribusinesses with smart, data-driven tools to enhance productivity, sustainability, and growth."
|
||||
/>
|
||||
<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="AgriTech Platform Development Services | WDI" />
|
||||
<meta
|
||||
name="twitter:description"
|
||||
content="WDI builds custom AgriTech Platforms that empower farmers and agribusinesses with smart, data-driven tools to enhance productivity, sustainability, and growth."
|
||||
/>
|
||||
<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">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, y: 30 }}
|
||||
@@ -32,7 +80,7 @@ const ProblemSolutionBlock = () => {
|
||||
<span className="text-white">Addressing the Core Challenges of </span>
|
||||
<span className="text-[#E5195E]">AgriTech Platforms</span>
|
||||
</h2>
|
||||
|
||||
|
||||
<div className="grid lg:grid-cols-2 gap-12 items-center">
|
||||
<motion.div
|
||||
initial={{ opacity: 0, x: -30 }}
|
||||
@@ -53,7 +101,7 @@ const ProblemSolutionBlock = () => {
|
||||
</p>
|
||||
</div>
|
||||
</motion.div>
|
||||
|
||||
|
||||
<motion.div
|
||||
initial={{ opacity: 0, x: 30 }}
|
||||
whileInView={{ opacity: 1, x: 0 }}
|
||||
@@ -137,7 +185,7 @@ const IconWithDescriptionGrid = () => {
|
||||
Comprehensive tools to create intelligent agricultural solutions that maximize yields and promote sustainability.
|
||||
</p>
|
||||
</motion.div>
|
||||
|
||||
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
|
||||
{features.map((feature, index) => {
|
||||
const IconComponent = feature.icon;
|
||||
@@ -214,7 +262,7 @@ const ThreeColumnFeatureBlock = () => {
|
||||
Leverage our expertise to create agricultural technology solutions that truly transform farming operations.
|
||||
</p>
|
||||
</motion.div>
|
||||
|
||||
|
||||
<div className="grid md:grid-cols-2 lg:grid-cols-4 gap-8">
|
||||
{advantages.map((advantage, index) => {
|
||||
const IconComponent = advantage.icon;
|
||||
@@ -281,7 +329,7 @@ const CaseStudyHighlightGrid = () => {
|
||||
Real results from our AgriTech platform implementations that transformed agricultural operations.
|
||||
</p>
|
||||
</motion.div>
|
||||
|
||||
|
||||
<div className="grid lg:grid-cols-2 gap-8">
|
||||
{caseStudies.map((study, index) => (
|
||||
<motion.div
|
||||
@@ -355,7 +403,7 @@ export const AgriTechPlatforms = () => {
|
||||
return (
|
||||
<div className="min-h-screen bg-[#0E0E0E]">
|
||||
<Navigation />
|
||||
|
||||
|
||||
<HeroBanner
|
||||
category="Industrial & Emerging Tech"
|
||||
title="AgriTech Platforms"
|
||||
@@ -372,29 +420,29 @@ export const AgriTechPlatforms = () => {
|
||||
/>
|
||||
|
||||
<ProblemSolutionBlock />
|
||||
|
||||
|
||||
<IconWithDescriptionGrid />
|
||||
|
||||
|
||||
<ThreeColumnFeatureBlock />
|
||||
|
||||
|
||||
<div className="bg-[#0E0E0E]">
|
||||
<ProcessSection />
|
||||
</div>
|
||||
|
||||
|
||||
<CaseStudyHighlightGrid />
|
||||
|
||||
|
||||
<div className="bg-[#0E0E0E]">
|
||||
<FAQSection
|
||||
<FAQSection
|
||||
title="AgriTech Platform FAQs"
|
||||
subtitle="Get answers to common questions about our agricultural technology development services."
|
||||
faqs={agriTechFAQs}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div className="bg-black">
|
||||
<SplitCallToAction />
|
||||
</div>
|
||||
|
||||
|
||||
<Footer />
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user