"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 (
美美与共 · 卡派查价 {title && ( / {title} )}
{children}
); }