'use client' import React from 'react' import Link from 'next/link' import { Github, Home } from 'lucide-react' export default function ClientLayout({ children, }: { children: React.ReactNode }) { return (
信奥工具箱
{children}
) }