import React from 'react'; import Navbar from './components/Navbar'; import Footer from './components/Footer'; import PopupWidget from './components/PopupWidget'; const AuthenticatedLayout = ({ children }) => { return ( <> {children} {/* This will render the content */}