import React from 'react'; import Footer from './footer'; import Main from './main'; import Navbar from './navbar'; interface LayoutProps { children: React.ReactNode; language?: boolean; navbarHeight?: boolean; customizable?: boolean; } const LandingLayout = ({ children, language = false, navbarHeight = true, customizable }: LayoutProps) => { return (
{children}
); }; export default LandingLayout;