import React from "react"; import NavbarHumas from "../navbar/NavbarHumas"; import Footer from "../Landing Page/Footer"; interface Props { children: React.ReactNode; } export const HumasLayout = ({ children }: Props) => { return (
{children}
); };