"use client"; import Link from "next/link"; import { type ReactNode } from "react"; import { Truck } from "@phosphor-icons/react"; interface AppLayoutProps { children: ReactNode; title?: string; } export function AppLayout({ children, title }: AppLayoutProps) { return (