diff --git a/src/components/Footer.jsx b/src/components/Footer.jsx index 1dbdda3..407dda8 100644 --- a/src/components/Footer.jsx +++ b/src/components/Footer.jsx @@ -1,23 +1,36 @@ -import { Link } from "react-router-dom" +import React from 'react'; -export default function Footer(){ - return ( - - ) -} \ No newline at end of file +const Footer = () => { + return ( +
+
+
+ +
+
+
+

Company

+ +
+
+

Legal Pages

+
    +
  • Privacy Policy
  • +
  • Terms and Conditions
  • +
  • Licensing
  • +
+
+
+
+
+ © 2024-2025 Foodies™. All Rights Reserved. +
+
+ ) +} + +export default Footer \ No newline at end of file