"use client"; import { AccentColor, MainColor } from "@/app_modules/_global/color"; import { BackgroundImage, Box, Container, rem, ScrollArea, } from "@mantine/core"; export function Test_Tamplate({ children, header, footer, }: { children: React.ReactNode; header: React.ReactNode; footer?: React.ReactNode; }) { return ( <> {/* */} {children} {/* */} ); } export function TestHeader({ header }: { header: React.ReactNode }) { return ( <> {header} ); } export function TestChildren({ children, footer, }: { children: React.ReactNode; footer: React.ReactNode; }) { return ( <> {children} ); } function TestFooter({ footer }: { footer: React.ReactNode }) { return ( <> {footer ? ( {footer} ) : ( "" )} ); }