diff --git a/client/src/components/Footer.jsx b/client/src/components/Footer.jsx index 8f030ea..f57904c 100644 --- a/client/src/components/Footer.jsx +++ b/client/src/components/Footer.jsx @@ -1,107 +1,119 @@ -function Footer() { - return ( - <> -
-
+import React from 'react'; + +const Footer = () => { + const socialLinks = [ + { icon: "/SocialMedia/Facebook.svg", alt: "Facebook" }, + { icon: "/SocialMedia/Instagram.svg", alt: "Instagram" }, + { icon: "/SocialMedia/LinkedIn.svg", alt: "LinkedIn" }, + { icon: "/SocialMedia/Twitter.svg", alt: "Twitter" }, + { icon: "/SocialMedia/YouTube.svg", alt: "YouTube" } + ]; + + const contactInfo = [ + { icon: "/Contacts/Email.svg", text: "support@ratna.in", alt: "Email" }, + { icon: "/Contacts/Phone.svg", text: "1-800-9625-45274", alt: "Phone" } + ]; -
- -

Connoisseurs in the aloo-pyaj industry

-
    -
  • - Facebook -
  • -
  • - Instagram -
  • -
  • - LinkedIn -
  • -
  • - Twitter -
  • -
  • - YouTube -
  • -
+ return ( +