import Link from "next/link" import { motion } from "framer-motion" import { Facebook, Twitter, Instagram, Youtube, PhoneIcon as Whatsapp, ArrowRight } from "lucide-react" const footerLinks = [ { title: "Exclusive Services", links: [ { name: "Return And Cancellation Policy", href: "/policies/refund-policy" }, { name: "Privacy Policy", href: "/policies/privacy-policy" }, { name: "Book a Consultation", href: "/products/premium-rudraksha-consultation-astrology" }, ], }, { title: "May We Help You?", links: [ { name: "Help and Contact", href: "/pages/contact-us" }, { name: "Track Order", href: "/pages/track-order" }, { name: "Shipping Information", href: "/pages/shipping-information" }, ], }, { title: "Our Brands", links: [ // { name: "Why Gupta Rudraksha?", href: "/pages/about-us" }, { name: "Certification and Guarantee", href: "/pages/certification-and-guarantee" }, { name: "Terms of Service", href: "/policies/terms-of-services" }, ], }, ] const socialLinks = [ { name: "Facebook", icon: Facebook, href: "https://www.facebook.com/share/15qi5L1EsK/" }, { name: "Instagram", icon: Instagram, href: "https://www.instagram.com/grb.religiongoods?igsh=ejNqZXZmMTVudzk=" }, { name: "YouTube", icon: Youtube, href: "https://youtube.com/@guptarudrakshabeads?si=bCVPn8GsneXcFv0s" }, { name: "WhatsApp", icon: Whatsapp, href: "https://api.whatsapp.com/send/?phone=9779803287986&text&type=phone_number&app_absent=0", }, ] const Footer = () => { return ( ) } export default Footer