diff --git a/frontend/src/components/layout/Footer.jsx b/frontend/src/components/layout/Footer.jsx new file mode 100644 index 0000000..2ae0aa1 --- /dev/null +++ b/frontend/src/components/layout/Footer.jsx @@ -0,0 +1,88 @@ +import { Link } from 'react-router-dom'; +import { Video } from 'lucide-react'; + +const Footer = () => { + return ( + + ); +}; + +export default Footer; diff --git a/frontend/src/components/layout/Layout.jsx b/frontend/src/components/layout/Layout.jsx index 02ff1c4..b11825e 100644 --- a/frontend/src/components/layout/Layout.jsx +++ b/frontend/src/components/layout/Layout.jsx @@ -1,4 +1,5 @@ import Navbar from './Navbar'; +import Footer from './Footer'; const Layout = ({ children, fullWidth = false, noPadding = false, pageTitle = null }) => { const mainClasses = fullWidth || noPadding @@ -11,6 +12,7 @@ const Layout = ({ children, fullWidth = false, noPadding = false, pageTitle = nu
{children}
+