2024-11-05 06:15:40 +00:00
|
|
|
import React from "react";
|
|
|
|
|
import NavbarHumas from "./navbar/NavbarHumas";
|
|
|
|
|
import Footer from "../landing/Footer";
|
2024-12-23 17:29:21 +00:00
|
|
|
import NewsTicker from "../landing/NewsTicker";
|
2024-11-05 06:15:40 +00:00
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const HumasLayout = ({ children }: Props) => {
|
|
|
|
|
return (
|
|
|
|
|
<section className="flex flex-col">
|
2025-01-14 15:30:13 +00:00
|
|
|
<NavbarHumas size="sm" />
|
|
|
|
|
<NavbarHumas size="lg" />
|
2024-12-23 17:29:21 +00:00
|
|
|
<NewsTicker />
|
|
|
|
|
|
2024-11-05 06:15:40 +00:00
|
|
|
{children}
|
|
|
|
|
<Footer />
|
|
|
|
|
</section>
|
|
|
|
|
);
|
|
|
|
|
};
|