diff --git a/app/(app)/AppLayoutClient.tsx b/app/(app)/AppLayoutClient.tsx
new file mode 100644
index 0000000..6686067
--- /dev/null
+++ b/app/(app)/AppLayoutClient.tsx
@@ -0,0 +1,80 @@
+'use client';
+
+import Link from 'next/link';
+import { ProtectedRoute, useAuth } from '@/lib/auth';
+
+export default function AppLayoutClient({
+ children,
+}: {
+ children: React.ReactNode;
+}) {
+ const { signOut, user } = useAuth();
+
+ const handleSignOut = async () => {
+ await signOut();
+ };
+
+ return (
+
+ 登录您的账户以访问分析面板 +
+ {serverInfo && ( ++ 还没有账号?{' '} + + 立即注册 + +
+- Get detailed insights into your link performance and visitor behavior -
++ Get detailed insights into your link performance and visitor behavior +
+- {section.description} -
- - ))} ++ {section.description} +
+ + ))} ++ 创建您的帐户以访问分析仪表板 +
++ 已有账号?{' '} + + 登录 + +
+加载中...
+