import React from "react"; import styles from "./Footer.module.css"; // assuming you have a CSS module for Footer import { useNavigationHelpers } from "../helpers/navigationHelpers"; export default function Footer({ shopId, cartItemsLength, selectedPage }) { const { goToShop, goToSearch, goToCart } = useNavigationHelpers(shopId); return (
{/* Shop Icon */}
{/* Search Icon */}
{/* Cart Icon */}
{cartItemsLength != "0" && (
{cartItemsLength}
)}
{/* Profile Icon */}
{/* Add more SVG elements as needed */}
); }