From c5661edff182200e5b2c72a93482686042782d18 Mon Sep 17 00:00:00 2001 From: Subodh kangale <125494916+subodhkangale07@users.noreply.github.com> Date: Mon, 4 Nov 2024 17:20:53 +0530 Subject: [PATCH 1/2] enhance the css of footer and cart page --- client/src/components/Footer.jsx | 206 ++++++++++++++++--------------- client/src/components/Navbar.jsx | 2 +- client/src/pages/Cart.jsx | 2 +- 3 files changed, 111 insertions(+), 99 deletions(-) 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 ( +