"use client";
import {
BackgroundImage,
Box,
Container,
rem,
ScrollArea
} from "@mantine/core";
import React from "react";
import { AccentColor, MainColor } from "../color/color_pallet";
export default function UIGlobal_LayoutTamplate({
children,
header,
footer,
}: {
children: React.ReactNode;
header?: React.ReactNode;
footer?: React.ReactNode;
}) {
return (
<>
{children}
>
);
}
export function UIHeader({ header }: { header: React.ReactNode }) {
return (
<>
{header ? (
{header}
) : (
""
)}
>
);
}
export function UIChildren({
children,
footer,
}: {
children: React.ReactNode;
footer: React.ReactNode;
}) {
return (
<>
{children}
>
);
}
function UIFooter({ footer }: { footer: React.ReactNode }) {
return (
<>
{footer ? (
{footer}
) : (
""
)}
>
);
}