import React from "react"; import { motion } from "framer-motion"; import { Navigation } from "../components/Navigation"; import { Footer } from "../components/Footer"; import { ProcessSection } from "../components/ProcessSection"; import { FAQSection } from "../components/FAQSection"; import { AnimatedGradientText } from "../components/AnimatedGradientText"; import { Button } from "../components/ui/button"; import { ShimmerButton } from "../components/ui/shimmer-button"; import { Badge } from "../components/ui/badge"; import { Card, CardContent } from "../components/ui/card"; import { Accordion, AccordionContent, AccordionItem, AccordionTrigger } from "../components/ui/accordion"; import { GridPattern } from "../components/GridPattern"; import { BookOpen, FileText, Star, FileCheck, HelpCircle, ArrowRight, Download, Calendar, Users, TrendingUp, MessageSquare, Brain, Award, Target, Globe, Heart, Shield, Eye, CheckCircle, Lightbulb, Coffee, Monitor, Smartphone, Rocket } from "lucide-react"; import { Helmet } from "react-helmet-async"; import { useNavigate } from "react-router-dom"; // Enhanced Hero Section const HeroWithCTA = () => { const navigate = useNavigate(); return (
{/* Page Title and Meta Description */} Resources | Industry Best Practices & Insights by WDI {/* Canonical Link */} {/* Open Graph Tags (for Facebook, LinkedIn) */} {/* Twitter Card Tags */} {/* Social Profiles (using JSON-LD Schema) */}
{/* Resources Label */} Knowledge Hub {/* Main Heading - Left aligned, reduced font size */}

Insights, Knowledge & Success Stories

Empower your decisions with WDI's comprehensive library of articles, case studies, client testimonials, and industry whitepapers.

{/* CTAs */} navigate('/resources/blog')}>
Explore Our Blog
{/* Right side with stats */}
100+
Blog Articles
50+
Case Studies
25+
Whitepapers
95%
Client Satisfaction
); }; // Enhanced Horizontal Tag Scroller with Resource Categories const HorizontalTagScroller = () => { const resources = [ { name: "Blog Articles", icon: BookOpen, color: "text-blue-400" }, { name: "Case Studies", icon: FileText, color: "text-green-400" }, { name: "Client Testimonials", icon: Star, color: "text-yellow-400" }, { name: "Whitepapers", icon: FileCheck, color: "text-purple-400" }, { name: "Industry Insights", icon: TrendingUp, color: "text-orange-400" }, { name: "FAQs", icon: HelpCircle, color: "text-cyan-400" } ]; return (

Navigate Our Knowledge Hub

Everything you need to understand our capabilities and the digital landscape.

{/* First set */} {resources.map((resource, index) => { const IconComponent = resource.icon; return (
{resource.name}
); })} {/* Second and third sets for seamless loop */} {[...resources, ...resources].map((resource, index) => { const IconComponent = resource.icon; return (
{resource.name}
); })}
); }; // Why Choose WDI for Resources Section const SideBySideContentWithIcons = () => { const advantages = [ { id: "expertise", title: "Expert Insights", icon: Lightbulb }, { id: "practical", title: "Practical Knowledge", icon: Target }, { id: "trends", title: "Industry Trends", icon: TrendingUp }, { id: "proven", title: "Proven Results", icon: Award }, { id: "transparent", title: "Transparent Sharing", icon: Eye } ]; return (

Knowledge That Drives Growth

Learn from our experience and industry expertise.

{advantages.map((advantage, index) => { const IconComponent = advantage.icon; return (

{advantage.title}

); })}
); }; // Resource Categories Grid const TabbedServiceDisplay = () => { const resources = [ { title: "Blog", icon: BookOpen, description: "Latest articles, tech trends, and expert opinions.", link: "/resources/blog" }, { title: "Case Studies", icon: FileText, description: "Real-world examples of our impactful solutions.", link: "/case-studies" }, { title: "Client Testimonials", icon: Star, description: "Hear directly from our satisfied partners.", link: "/resources/client-testimonials" }, { title: "Whitepapers & Insights", icon: FileCheck, description: "In-depth research and thought leadership.", link: "/resources/whitepapers-insights" }, { title: "FAQs", icon: HelpCircle, description: "Quick answers to common questions about WDI.", link: "/resources/faqs" } ]; const navigate = useNavigate(); return (

Explore Our Resource Categories

Comprehensive knowledge base designed to empower your digital transformation journey.

{resources.map((resource, index) => { const IconComponent = resource.icon; return ( navigate(resource.link)} >

{resource.title}

{resource.description}

); })}
); }; // Updated CTA Section with new design const InlineCTA = () => { const navigate = useNavigate(); return (
{/* Ready to Launch Badge */}
Ready to Launch?
{/* Main Heading */}

Unlock Deeper Insights with WDI's Knowledge

{/* Subtitle */}

Get exclusive access to our expert research, industry insights, and proven methodologies.

{/* CTA Button */}
navigate('/resources/whitepapers-insights')} >
Download Our Latest Whitepaper
{/* Small benefit text */}

Free downloads • Expert insights • Industry analysis

); }; // Featured Content Section const FeaturedContentSection = () => { const featured = [ { title: "The Future of Mobile App Development", type: "Blog Article", icon: Smartphone, date: "Dec 2024", iconBg: "bg-blue-500", iconColor: "text-white", link: "/resources/blog" }, { title: "AI Integration Success Stories", type: "Case Study", icon: Brain, date: "Nov 2024", iconBg: "bg-purple-500", iconColor: "text-white", link: "/case-studies" }, { title: "Digital Transformation Trends 2025", type: "Whitepaper", icon: TrendingUp, date: "Oct 2024", iconBg: "bg-green-500", iconColor: "text-white", link: "/resources/whitepapers-insights" }, { title: "Client Success Testimonials", type: "Testimonial", icon: Heart, date: "Ongoing", iconBg: "bg-red-500", iconColor: "text-white", link: "/resources/client-testimonials" } ]; const navigate = useNavigate(); return (

Featured Content & Insights

Stay updated with our latest insights, success stories, and industry expertise.

{featured.map((item, index) => { const IconComponent = item.icon; return ( {/* Header */}
{item.type}
{item.date}

{item.title}

{/* CTA */}
navigate(item.link)} >
Read More
); })}
); }; // FAQ data for Resources const resourcesFAQs = [ { question: "What types of content do you publish?", answer: "We publish a wide range of content including technical articles, industry insights, case studies, whitepapers, client testimonials, and practical guides to help businesses with their digital transformation journey." }, { question: "How often do you update your resources?", answer: "We regularly update our content with new blog articles published weekly, case studies monthly, and comprehensive whitepapers quarterly. Our FAQ section and testimonials are updated as needed." }, { question: "Can I download whitepapers for free?", answer: "Yes, most of our whitepapers and insights are available for free download. Some premium content may require registration with your business email to access." }, { question: "How can I stay updated with new content?", answer: "You can subscribe to our newsletter, follow our blog, or connect with us on social media platforms. We also offer RSS feeds for easy content syndication." }, { question: "Do you accept guest contributions?", answer: "We welcome high-quality guest contributions from industry experts. Please contact our content team with your proposal and we'll review it based on our editorial guidelines." } ]; export function Resources() { return (
{/* */} {/*
); }