import { cn } from "@app/core/utils/cn.ts"; import { AlignLeftIcon, type LucideIcon } from "lucide-react"; import Footer from "./UI/Footer"; export interface PageLayoutProps { label: string; noPadding?: boolean; children: React.ReactNode; actions?: { icon: LucideIcon; iconClasses?: string; onClick: () => void; }[]; } export const PageLayout = ({ label, noPadding, actions, children, }: PageLayoutProps): JSX.Element => { return ( <>