import React from 'react'; import { Box, Container, Grid, Typography, Link, Divider, Stack, useMediaQuery, useTheme } from '@mui/material'; import { Instagram, YouTube, Facebook, LinkedIn } from '@mui/icons-material'; import { motion } from 'framer-motion'; export default function Footer() { const theme = useTheme(); const isMobile = useMediaQuery(theme.breakpoints.down('sm')); return ( {/* Column 1: Explore Links */} About Us Portfolio Blogs Services {/* Column 2: Support Links */} FAQ’s Terms & Conditions Privacy Policy {/* Column 3: Logo (only visible on md+) */} {!isMobile && ( Quadra Edge )} {/* Column 4: Contact Info + Socials */} {/* Mobile: show logo here instead */} {isMobile && ( Quadra Edge )} Contact Us Number Address Copyright © 2025 QuadraEdge ); }