18 lines
350 B
TypeScript
18 lines
350 B
TypeScript
|
|
import React from "react";
|
||
|
|
import NavbarHumas from "./navbar/NavbarHumas";
|
||
|
|
import Footer from "../landing/Footer";
|
||
|
|
|
||
|
|
interface Props {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}
|
||
|
|
|
||
|
|
export const HumasLayout = ({ children }: Props) => {
|
||
|
|
return (
|
||
|
|
<section className="flex flex-col">
|
||
|
|
<NavbarHumas />
|
||
|
|
{children}
|
||
|
|
<Footer />
|
||
|
|
</section>
|
||
|
|
);
|
||
|
|
};
|