"use client"; import React from 'react'; import { motion } from 'framer-motion'; const companyLinks = [ { text: "About", url: "/about" }, { text: "Careers", url: "/careers" }, { text: "Blogs", url: "/blogs" }, { text: "Status", url: "/status" }, { text: "Privacy", url: "/privacy" }, { text: "Partner with us", url: "/partner" } ]; const communicationLinks = [ { text: "Book Discovery Call", url: "/book-call" }, { text: "Science Behind Everything", url: "/science" } ]; const communityLinks = [ { text: "Customer Stories", url: "/customer-stories" }, { text: "Community", url: "/community" }, { text: "Support", url: "/support" }, { text: "Reports", url: "/reports" } ]; const learnLinks = [ { text: "Webinars", url: "/webinars" }, { text: "Leadership", url: "/leadership" }, { text: "Demo", url: "/demo" }, { text: "Videos", url: "/videos" }, { text: "Guides", url: "/guides" }, { text: "Articles", url: "/articles" }, { text: "eBooks", url: "/ebooks" }, { text: "Quick Reads", url: "/quick-reads" } ]; const solutionsLinks = [ { text: "Popular Solutions", url: "/solutions/popular" }, { text: "Marketing", url: "/solutions/marketing" }, { text: "Product", url: "/solutions/product" }, { text: "Human Resources", url: "/solutions/hr" }, { text: "Sales", url: "/solutions/sales" }, { text: "Operations", url: "/solutions/operations" }, { text: "Finance", url: "/solutions/finance" }, { text: "Content", url: "/solutions/content" } ]; export default function Footer() { return (
{/* Top Section */}

Let's get Started

{/* Middle Section with Lists */}
{/* Company List */}

Company

{/* Communication List */}

Communication

    {communicationLinks.map((link, index) => (
  • {link.text}
  • ))}
{/* Community List */}

Community

    {communityLinks.map((link, index) => (
  • {link.text}
  • ))}
{/* Learn List */}

Learn

{/* Solutions List */}

Solutions

    {solutionsLinks.map((link, index) => (
  • {link.text}
  • ))}
{/* Bottom Section with Animated Image */}
{/* Animated Logo Image */} {/* Description Text */}

In the new era of technology, we look to the future with certainty and pride for our company and business.

); }