"use client"; import { motion } from "framer-motion"; import Link from "next/link"; import { ArrowLeft } from "lucide-react"; import Footer from "./Footer"; // Assuming you moved it to a component import { PageLayoutProps } from "@/types/index"; export default function PageLayout({ children, backLink, backLabel = "BACK TO DASHBOARD", maxWidth = "5xl", }: PageLayoutProps) { const widthClass = { "5xl": "max-w-5xl", "6xl": "max-w-6xl", "7xl": "max-w-7xl", }[maxWidth]; return (
{backLink && ( {backLabel} )} {children}
); }