This commit is contained in:
freedakgmail
2025-12-21 17:32:33 +08:00
parent cffdd75e96
commit 5c8c70097c
190 changed files with 2746 additions and 893 deletions
@@ -0,0 +1,321 @@
# Design Document: 为始祖添加父母时的代数重新计算提醒
## Overview
本设计文档描述了在家族树应用中,当用户尝试给始祖(第1代成员)添加父母时,显示确认对话框的功能实现。该功能旨在提醒用户此操作将导致全族代数重新计算,确保用户了解操作的影响后再执行。
### 设计目标
1. 在所有添加父母的入口点(成员页面、族谱页面、添加关系对话框)统一实现确认提醒
2. 提供清晰的信息说明代数变化的影响
3. 保持与现有 UI 组件风格一致
4. 不影响非始祖成员的正常添加父母操作
## Architecture
### 组件架构
```
┌─────────────────────────────────────────────────────────────┐
│ 用户界面层 │
├─────────────────────────────────────────────────────────────┤
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────────────┐ │
│ │ MemberCard │ │ D3OrgChart │ │ AddRelationDialog │ │
│ │ (成员页面) │ │ (族谱页面) │ │ (添加关系对话框) │ │
│ └──────┬──────┘ └──────┬──────┘ └──────────┬──────────┘ │
│ │ │ │ │
│ └────────────────┼─────────────────────┘ │
│ │ │
│ ▼ │
│ ┌───────────────────────────────────────────────────────┐ │
│ │ GenerationWarningDialog (新组件) │ │
│ │ - 显示代数重新计算警告 │ │
│ │ - 提供确认/取消操作 │ │
│ └───────────────────────────────────────────────────────┘ │
├─────────────────────────────────────────────────────────────┤
│ 工具函数层 │
├─────────────────────────────────────────────────────────────┤
│ ┌───────────────────────────────────────────────────────┐ │
│ │ isFirstGenerationMember() (新函数) │ │
│ │ - 检查成员是否为第1代 │ │
│ │ - 判断是否需要显示警告 │ │
│ └───────────────────────────────────────────────────────┘ │
└─────────────────────────────────────────────────────────────┘
```
### 数据流
```mermaid
sequenceDiagram
participant User as 用户
participant UI as UI组件
participant Check as 检查函数
participant Dialog as 警告对话框
participant Nav as 导航
User->>UI: 右键点击成员 → 添加父母
UI->>Check: isFirstGenerationMember(member)
Check-->>UI: true/false
alt 是第1代成员
UI->>Dialog: 显示警告对话框
Dialog-->>User: 展示代数变化说明
alt 用户确认
User->>Dialog: 点击"确认添加"
Dialog->>Nav: 跳转到新增成员页面
else 用户取消
User->>Dialog: 点击"取消"
Dialog->>UI: 关闭对话框
end
else 不是第1代成员
UI->>Nav: 直接跳转到新增成员页面
end
```
## Components and Interfaces
### 1. GenerationWarningDialog 组件
新建确认对话框组件,用于显示代数重新计算警告。
```typescript
// components/tree/generation-warning-dialog.tsx
interface GenerationWarningDialogProps {
open: boolean
onOpenChange: (open: boolean) => void
memberName: string
relationType: 'father' | 'mother'
onConfirm: () => void
}
export function GenerationWarningDialog({
open,
onOpenChange,
memberName,
relationType,
onConfirm,
}: GenerationWarningDialogProps) {
// 实现对话框内容
}
```
### 2. isFirstGenerationMember 工具函数
检查成员是否为第1代成员的工具函数。
```typescript
// lib/generation-utils.ts (扩展现有文件)
/**
* 检查成员是否为第1代成员(需要显示代数重新计算警告)
* @param member 家族成员对象
* @returns 是否为第1代成员
*/
export function isFirstGenerationMember(member: FamilyMember): boolean {
return member.generation === 1
}
/**
* 检查添加父母操作是否需要显示警告
* @param member 目标成员
* @param relationType 关系类型
* @returns 是否需要显示警告
*/
export function shouldShowGenerationWarning(
member: FamilyMember,
relationType: 'father' | 'mother'
): boolean {
return isFirstGenerationMember(member)
}
```
### 3. 组件集成接口
#### MemberCard 组件修改
```typescript
// 在 MemberCard 组件中添加状态管理
const [showWarningDialog, setShowWarningDialog] = useState(false)
const [pendingRelationType, setPendingRelationType] = useState<'father' | 'mother' | null>(null)
// 修改 handleAddMember 函数
const handleAddMember = (type: RelationType) => {
if ((type === 'father' || type === 'mother') && isFirstGenerationMember(member)) {
setPendingRelationType(type)
setShowWarningDialog(true)
} else {
onOpenAddDialog(member, type)
}
}
```
#### D3OrgChartFlow 组件修改
```typescript
// 在 D3OrgChartFlow 组件中添加状态管理
const [showWarningDialog, setShowWarningDialog] = useState(false)
const [pendingAction, setPendingAction] = useState<{
type: 'father' | 'mother'
member: FamilyMember
} | null>(null)
// 修改 handleAddMember 函数
const handleAddMember = (type: 'father' | 'mother' | 'spouse' | 'child', member: FamilyMember) => {
if ((type === 'father' || type === 'mother') && isFirstGenerationMember(member)) {
setPendingAction({ type, member })
setShowWarningDialog(true)
} else {
// 原有逻辑
const url = buildAddUrl(type, member)
window.location.href = url
}
}
```
## Data Models
本功能不需要新增数据模型,使用现有的 `FamilyMember` 类型:
```typescript
interface FamilyMember {
id: string
generation: number // 用于判断是否为第1代
fullName: string
fatherId?: string
motherId?: string
// ... 其他字段
}
```
## Correctness Properties
*A property is a characteristic or behavior that should hold true across all valid executions of a system—essentially, a formal statement about what the system should do. Properties serve as the bridge between human-readable specifications and machine-verifiable correctness guarantees.*
### Property 1: 第1代成员检测正确性
*For any* 家族成员,`isFirstGenerationMember` 函数返回 `true` 当且仅当该成员的 `generation` 值等于 1。
**Validates: Requirements 1.1, 1.2, 1.3, 1.4**
### Property 2: 警告显示条件正确性
*For any* 添加父母操作,`shouldShowGenerationWarning` 函数返回 `true` 当且仅当目标成员是第1代成员且关系类型为 'father' 或 'mother'。
**Validates: Requirements 1.3, 2.1**
### Property 3: 非第1代成员不触发警告
*For any* 成员,如果其 `generation` 值大于 1,则添加父母操作不应触发警告对话框。
**Validates: Requirements 1.4**
## Error Handling
### 错误场景
1. **成员数据缺失**
- 场景:成员对象缺少 `generation` 字段
- 处理:默认不显示警告,允许操作继续
2. **对话框状态异常**
- 场景:对话框打开时成员数据变化
- 处理:关闭对话框,提示用户重新操作
3. **导航失败**
- 场景:确认后跳转失败
- 处理:显示错误提示,保持对话框打开状态
### 错误处理代码示例
```typescript
const handleConfirm = () => {
try {
if (!pendingAction) {
console.error('No pending action')
return
}
const url = buildAddUrl(pendingAction.type, pendingAction.member)
setShowWarningDialog(false)
setPendingAction(null)
// 使用 setTimeout 确保对话框关闭后再跳转
setTimeout(() => {
window.location.href = url
}, 100)
} catch (error) {
console.error('Navigation failed:', error)
toast({
title: '操作失败',
description: '无法跳转到新增成员页面,请重试',
variant: 'destructive'
})
}
}
```
## Testing Strategy
### 单元测试
1. **isFirstGenerationMember 函数测试**
- 测试 generation = 1 返回 true
- 测试 generation > 1 返回 false
- 测试边界值(generation = 0, 负数等)
2. **shouldShowGenerationWarning 函数测试**
- 测试第1代成员 + father/mother 返回 true
- 测试非第1代成员返回 false
- 测试其他关系类型(spouse, child)返回 false
### 属性测试
使用 fast-check 进行属性测试:
```typescript
import fc from 'fast-check'
// Property 1: 第1代成员检测
fc.assert(
fc.property(
fc.integer({ min: 1, max: 100 }),
(generation) => {
const member = { generation } as FamilyMember
return isFirstGenerationMember(member) === (generation === 1)
}
),
{ numRuns: 100 }
)
// Property 2: 警告显示条件
fc.assert(
fc.property(
fc.integer({ min: 1, max: 100 }),
fc.constantFrom('father', 'mother', 'spouse', 'child'),
(generation, relationType) => {
const member = { generation } as FamilyMember
const shouldShow = shouldShowGenerationWarning(member, relationType as any)
const expected = generation === 1 && (relationType === 'father' || relationType === 'mother')
return shouldShow === expected
}
),
{ numRuns: 100 }
)
```
### 集成测试
1. **成员页面右键菜单测试**
- 验证第1代成员右键添加父母显示对话框
- 验证非第1代成员右键添加父母直接跳转
2. **族谱页面右键菜单测试**
- 验证第1代成员右键添加父母显示对话框
- 验证确认后正确跳转
3. **对话框交互测试**
- 验证对话框内容正确显示
- 验证确认按钮触发跳转
- 验证取消按钮关闭对话框
@@ -0,0 +1,85 @@
# Requirements Document
## Introduction
本功能为家族树应用添加"为始祖添加父母时的代数重新计算提醒"功能。当用户尝试给始祖(第1代成员)添加父母时,系统需要先显示确认对话框,提醒用户此操作将导致全族代数重新计算,确保用户了解操作的影响后再执行。
## Glossary
- **Family_Tree_System**: 家族树管理系统,负责管理家族成员和关系
- **Generation_Calculator**: 代数计算器,负责计算和调整成员的世代数
- **Founder**: 始祖,指家族树中第1代且没有父母的成员
- **Root_Member**: 根成员,家族树的起始成员,通常是始祖
- **Generation_Offset**: 代数偏移量,用于批量调整所有成员的世代数
- **Confirmation_Dialog**: 确认对话框,用于在执行重要操作前获取用户确认
## Requirements
### Requirement 1: 检测始祖添加父母操作
**User Story:** As a 家族树编辑者, I want 系统能够检测我是否正在给始祖添加父母, so that 我能在操作前收到提醒。
#### Acceptance Criteria
1. WHEN 用户在成员页面右键点击一个成员并选择"添加父亲"或"添加母亲" THEN THE Family_Tree_System SHALL 检查该成员是否为第1代成员
2. WHEN 用户在族谱页面右键点击一个成员并选择"添加父亲"或"添加母亲" THEN THE Family_Tree_System SHALL 检查该成员是否为第1代成员
3. WHEN 被操作的成员是第1代成员 THEN THE Family_Tree_System SHALL 标记此操作为"需要代数重新计算"
4. WHEN 被操作的成员不是第1代成员 THEN THE Family_Tree_System SHALL 正常执行添加父母操作
### Requirement 2: 显示代数重新计算确认对话框
**User Story:** As a 家族树编辑者, I want 在给始祖添加父母前看到确认对话框, so that 我能了解此操作对整个家族树的影响。
#### Acceptance Criteria
1. WHEN 用户尝试给第1代成员添加父母 THEN THE Confirmation_Dialog SHALL 显示警告信息
2. THE Confirmation_Dialog SHALL 包含以下信息:操作说明、影响范围、代数变化示例
3. THE Confirmation_Dialog SHALL 提供"确认"和"取消"两个操作按钮
4. WHEN 用户点击"确认"按钮 THEN THE Family_Tree_System SHALL 继续执行添加父母操作
5. WHEN 用户点击"取消"按钮 THEN THE Family_Tree_System SHALL 取消操作并关闭对话框
### Requirement 3: 确认对话框内容展示
**User Story:** As a 家族树编辑者, I want 确认对话框清晰展示代数变化的影响, so that 我能做出明智的决定。
#### Acceptance Criteria
1. THE Confirmation_Dialog SHALL 显示标题"全族代数将重新计算"
2. THE Confirmation_Dialog SHALL 显示说明文字"您正在给始祖添加父母,这将导致全族代数重新计算"
3. THE Confirmation_Dialog SHALL 显示代数变化说明"原第1代将变为第2代,以此类推"
4. THE Confirmation_Dialog SHALL 使用警告样式(黄色/橙色)突出显示重要信息
5. THE Confirmation_Dialog SHALL 在确认按钮上显示"确认添加"文字
6. THE Confirmation_Dialog SHALL 在取消按钮上显示"取消"文字
### Requirement 4: 成员页面右键菜单集成
**User Story:** As a 家族树编辑者, I want 在成员页面通过右键菜单添加父母时收到提醒, so that 我不会意外触发全族代数重新计算。
#### Acceptance Criteria
1. WHEN 用户在成员页面右键点击第1代成员并选择"添加父亲" THEN THE Family_Tree_System SHALL 显示确认对话框
2. WHEN 用户在成员页面右键点击第1代成员并选择"添加母亲" THEN THE Family_Tree_System SHALL 显示确认对话框
3. WHEN 用户确认操作后 THEN THE Family_Tree_System SHALL 跳转到新增成员页面并预填相关信息
4. WHEN 用户取消操作后 THEN THE Family_Tree_System SHALL 保持在当前页面不做任何改变
### Requirement 5: 族谱页面右键菜单集成
**User Story:** As a 家族树编辑者, I want 在族谱页面通过右键菜单添加父母时收到提醒, so that 我不会意外触发全族代数重新计算。
#### Acceptance Criteria
1. WHEN 用户在族谱页面右键点击第1代成员并选择"添加父亲" THEN THE Family_Tree_System SHALL 显示确认对话框
2. WHEN 用户在族谱页面右键点击第1代成员并选择"添加母亲" THEN THE Family_Tree_System SHALL 显示确认对话框
3. WHEN 用户确认操作后 THEN THE Family_Tree_System SHALL 跳转到新增成员页面并预填相关信息
4. WHEN 用户取消操作后 THEN THE Family_Tree_System SHALL 关闭右键菜单并保持在当前页面
### Requirement 6: 添加关系对话框集成
**User Story:** As a 家族树编辑者, I want 在使用添加关系对话框添加父母时收到提醒, so that 所有添加父母的入口都有一致的提醒体验。
#### Acceptance Criteria
1. WHEN 用户通过 AddRelationDialog 组件为第1代成员添加父亲 THEN THE Family_Tree_System SHALL 显示确认对话框
2. WHEN 用户通过 AddRelationDialog 组件为第1代成员添加母亲 THEN THE Family_Tree_System SHALL 显示确认对话框
3. WHEN 用户在对话框中关联已有成员作为父母 THEN THE Family_Tree_System SHALL 在关联前显示确认对话框
4. WHEN 用户在对话框中创建新成员作为父母 THEN THE Family_Tree_System SHALL 在创建前显示确认对话框
@@ -0,0 +1,71 @@
# Implementation Plan: 为始祖添加父母时的代数重新计算提醒
## Overview
本实现计划将分步骤实现代数重新计算警告功能,从工具函数开始,然后创建对话框组件,最后集成到各个入口点。
## Tasks
- [x] 1. 扩展代数工具函数
- [x] 1.1 在 lib/generation-utils.ts 中添加 isFirstGenerationMember 函数
- 实现检查成员是否为第1代的逻辑
- 处理边界情况(generation 为 undefined 或无效值)
- _Requirements: 1.1, 1.2, 1.3, 1.4_
- [x] 1.2 在 lib/generation-utils.ts 中添加 shouldShowGenerationWarning 函数
- 实现判断是否需要显示警告的逻辑
- 只对 father/mother 关系类型返回 true
- _Requirements: 1.3, 2.1_
- [ ]* 1.3 编写属性测试验证第1代成员检测
- **Property 1: 第1代成员检测正确性**
- **Validates: Requirements 1.1, 1.2, 1.3, 1.4**
- [x] 2. 创建 GenerationWarningDialog 组件
- [x] 2.1 创建 components/tree/generation-warning-dialog.tsx 文件
- 使用 AlertDialog 组件作为基础
- 实现警告内容展示
- 实现确认和取消按钮
- _Requirements: 2.1, 2.2, 2.3, 2.4, 2.5, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6_
- [x] 3. Checkpoint - 确保基础组件完成
- 确保所有测试通过,如有问题请询问用户
- [x] 4. 集成到成员页面
- [x] 4.1 修改 app/members/page.tsx 中的 MemberCard 组件
- 添加警告对话框状态管理
- 修改 handleAddMember 函数添加第1代检测
- 集成 GenerationWarningDialog 组件
- _Requirements: 4.1, 4.2, 4.3, 4.4_
- [x] 5. 集成到族谱页面
- [x] 5.1 修改 components/tree/d3-org-chart-flow.tsx 组件
- 添加警告对话框状态管理
- 修改右键菜单的 handleAddMember 函数
- 集成 GenerationWarningDialog 组件
- _Requirements: 5.1, 5.2, 5.3, 5.4_
- [x] 5.2 修改 components/tree/family-node.tsx 组件
- 添加警告对话框状态管理
- 修改右键菜单的添加父母逻辑
- 集成 GenerationWarningDialog 组件
- _Requirements: 5.1, 5.2, 5.3, 5.4_
- [x] 6. 集成到添加关系对话框
- [x] 6.1 修改 components/tree/add-relation-dialog.tsx 组件
- 添加警告对话框状态管理
- 在关联已有成员前检测是否需要警告
- 在创建新成员前检测是否需要警告
- _Requirements: 6.1, 6.2, 6.3, 6.4_
- [x] 7. Final Checkpoint - 确保所有集成完成
- 确保所有测试通过,如有问题请询问用户
- 验证成员页面、族谱页面、添加关系对话框三个入口点都能正确显示警告
## Notes
- Tasks marked with `*` are optional and can be skipped for faster MVP
- Each task references specific requirements for traceability
- Checkpoints ensure incremental validation
- Property tests validate universal correctness properties
- 本功能主要是前端 UI 改动,后端 API 已经实现了代数重新计算逻辑
+1 -1
View File
@@ -1 +1 @@
NAO-lsKimvD1dA_Uih5A8 15cFgZF_0_x1wZ_VPstJS
+4 -4
View File
@@ -7,15 +7,15 @@
"static/chunks/a6dad97d9634a72d.js" "static/chunks/a6dad97d9634a72d.js"
], ],
"lowPriorityFiles": [ "lowPriorityFiles": [
"static/NAO-lsKimvD1dA_Uih5A8/_ssgManifest.js", "static/15cFgZF_0_x1wZ_VPstJS/_ssgManifest.js",
"static/NAO-lsKimvD1dA_Uih5A8/_buildManifest.js" "static/15cFgZF_0_x1wZ_VPstJS/_buildManifest.js"
], ],
"rootMainFiles": [ "rootMainFiles": [
"static/chunks/fca12c8710bac04f.js", "static/chunks/c74c28613e683555.js",
"static/chunks/00501d8005072065.js", "static/chunks/00501d8005072065.js",
"static/chunks/dae599f36ada12e5.js", "static/chunks/dae599f36ada12e5.js",
"static/chunks/c8d8a9d45df7b3b4.js", "static/chunks/c8d8a9d45df7b3b4.js",
"static/chunks/e8bd79bd269e9b4f.js", "static/chunks/e8bd79bd269e9b4f.js",
"static/chunks/turbopack-1482dc2f7aa839a8.js" "static/chunks/turbopack-8fcff53edef506b4.js"
] ]
} }
+1 -1
View File
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -5,8 +5,8 @@
"devFiles": [], "devFiles": [],
"polyfillFiles": [], "polyfillFiles": [],
"lowPriorityFiles": [ "lowPriorityFiles": [
"static/NAO-lsKimvD1dA_Uih5A8/_ssgManifest.js", "static/15cFgZF_0_x1wZ_VPstJS/_ssgManifest.js",
"static/NAO-lsKimvD1dA_Uih5A8/_buildManifest.js" "static/15cFgZF_0_x1wZ_VPstJS/_buildManifest.js"
], ],
"rootMainFiles": [] "rootMainFiles": []
} }
+2 -2
View File
@@ -1,2 +1,2 @@
<!DOCTYPE html><!--NAO_lsKimvD1dA_Uih5A8--><html id="__next_error__"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/fca12c8710bac04f.js"/><script src="/_next/static/chunks/00501d8005072065.js" async=""></script><script src="/_next/static/chunks/dae599f36ada12e5.js" async=""></script><script src="/_next/static/chunks/c8d8a9d45df7b3b4.js" async=""></script><script src="/_next/static/chunks/e8bd79bd269e9b4f.js" async=""></script><script src="/_next/static/chunks/turbopack-1482dc2f7aa839a8.js" async=""></script><script src="/_next/static/chunks/2cce29c82e2b8fb0.js" async=""></script><script src="/_next/static/chunks/3acbe26d2665d2b1.js" async=""></script><meta name="next-size-adjust" content=""/><title>500: Internal Server Error.</title><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div style="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)} <!DOCTYPE html><!--15cFgZF_0_x1wZ_VPstJS--><html id="__next_error__"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/c74c28613e683555.js"/><script src="/_next/static/chunks/00501d8005072065.js" async=""></script><script src="/_next/static/chunks/dae599f36ada12e5.js" async=""></script><script src="/_next/static/chunks/c8d8a9d45df7b3b4.js" async=""></script><script src="/_next/static/chunks/e8bd79bd269e9b4f.js" async=""></script><script src="/_next/static/chunks/turbopack-8fcff53edef506b4.js" async=""></script><script src="/_next/static/chunks/2cce29c82e2b8fb0.js" async=""></script><script src="/_next/static/chunks/3acbe26d2665d2b1.js" async=""></script><meta name="next-size-adjust" content=""/><title>500: Internal Server Error.</title><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div style="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}
@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/fca12c8710bac04f.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[51816,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"default\"]\n3:I[61240,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"default\"]\n4:I[91865,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[91865,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"ViewportBoundary\"]\n9:I[91865,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"MetadataBoundary\"]\nb:I[55065,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"NAO-lsKimvD1dA_Uih5A8\",\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"title\",null,{\"children\":\"500: Internal Server Error.\"}]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"style\":{\"lineHeight\":\"48px\"},\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"paddingRight\":23,\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\"},\"children\":\"500\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"28px\"},\"children\":\"Internal Server Error.\"}]}]]}]}]}]]}],[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/3acbe26d2665d2b1.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L7\",null,{\"children\":\"$@8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$@a\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"a:[]\n6:null\n"])</script></body></html> @media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/c74c28613e683555.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[51816,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"default\"]\n3:I[61240,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"default\"]\n4:I[91865,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[91865,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"ViewportBoundary\"]\n9:I[91865,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"MetadataBoundary\"]\nb:I[55065,[\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"/_next/static/chunks/3acbe26d2665d2b1.js\"],\"default\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"15cFgZF_0_x1wZ_VPstJS\",\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"title\",null,{\"children\":\"500: Internal Server Error.\"}]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"style\":{\"lineHeight\":\"48px\"},\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"paddingRight\":23,\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\"},\"children\":\"500\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"28px\"},\"children\":\"Internal Server Error.\"}]}]]}]}]}]]}],[[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/2cce29c82e2b8fb0.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/3acbe26d2665d2b1.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L7\",null,{\"children\":\"$@8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$@a\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"a:[]\n6:null\n"])</script></body></html>
+1 -1
View File
@@ -6,7 +6,7 @@
7:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"] 7:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
9:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 9:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
b:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] b:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/2cce29c82e2b8fb0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3acbe26d2665d2b1.js","async":true,"nonce":"$undefined"}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$@8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@a"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true} 0:{"P":null,"b":"15cFgZF_0_x1wZ_VPstJS","c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/2cce29c82e2b8fb0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3acbe26d2665d2b1.js","async":true,"nonce":"$undefined"}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$@8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@a"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
a:[] a:[]
6:null 6:null
@@ -1,5 +1,5 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] 2:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
3:"$Sreact.suspense" 3:"$Sreact.suspense"
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/2cce29c82e2b8fb0.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3acbe26d2665d2b1.js","async":true}]],["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/2cce29c82e2b8fb0.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/3acbe26d2665d2b1.js","async":true}]],["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
4:null 4:null
@@ -6,7 +6,7 @@
7:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"] 7:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
9:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 9:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
b:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] b:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/2cce29c82e2b8fb0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3acbe26d2665d2b1.js","async":true,"nonce":"$undefined"}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$@8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@a"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true} 0:{"P":null,"b":"15cFgZF_0_x1wZ_VPstJS","c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],[["$","script","script-0",{"src":"/_next/static/chunks/2cce29c82e2b8fb0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/3acbe26d2665d2b1.js","async":true,"nonce":"$undefined"}]],["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$@8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@a"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$b","$undefined"],"S":true}
8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
a:[] a:[]
6:null 6:null
@@ -2,6 +2,6 @@
2:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"] 2:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
5:"$Sreact.suspense" 5:"$Sreact.suspense"
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
6:[] 6:[]
@@ -1,4 +1,4 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
@@ -1 +1 @@
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false},"staleTime":300} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false},"staleTime":300}
@@ -6,12 +6,12 @@
], ],
"lowPriorityFiles": [], "lowPriorityFiles": [],
"rootMainFiles": [ "rootMainFiles": [
"static/chunks/fca12c8710bac04f.js", "static/chunks/c74c28613e683555.js",
"static/chunks/00501d8005072065.js", "static/chunks/00501d8005072065.js",
"static/chunks/dae599f36ada12e5.js", "static/chunks/dae599f36ada12e5.js",
"static/chunks/c8d8a9d45df7b3b4.js", "static/chunks/c8d8a9d45df7b3b4.js",
"static/chunks/e8bd79bd269e9b4f.js", "static/chunks/e8bd79bd269e9b4f.js",
"static/chunks/turbopack-1482dc2f7aa839a8.js" "static/chunks/turbopack-8fcff53edef506b4.js"
], ],
"pages": {}, "pages": {},
"ampFirstPages": [] "ampFirstPages": []
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -1,8 +1,8 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[91865,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"ViewportBoundary"] 2:I[91865,["/_next/static/chunks/4898d4a341eb8639.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/caa5e4031b9d7340.js"],"ViewportBoundary"]
4:I[91865,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"MetadataBoundary"] 4:I[91865,["/_next/static/chunks/4898d4a341eb8639.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/caa5e4031b9d7340.js"],"MetadataBoundary"]
5:"$Sreact.suspense" 5:"$Sreact.suspense"
7:I[19533,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"IconMark"] 7:I[19533,["/_next/static/chunks/4898d4a341eb8639.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/caa5e4031b9d7340.js"],"IconMark"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]] 6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]]
@@ -1,10 +1,10 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/4898d4a341eb8639.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/caa5e4031b9d7340.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/4898d4a341eb8639.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/caa5e4031b9d7340.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/4898d4a341eb8639.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/caa5e4031b9d7340.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/4898d4a341eb8639.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/caa5e4031b9d7340.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"default"] 6:I[51816,["/_next/static/chunks/4898d4a341eb8639.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/caa5e4031b9d7340.js"],"default"]
7:I[61240,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"default"] 7:I[61240,["/_next/static/chunks/4898d4a341eb8639.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/caa5e4031b9d7340.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/be022f253dbbf9ad.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/3acbe26d2665d2b1.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/4898d4a341eb8639.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/3acbe26d2665d2b1.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false}
@@ -1,4 +1,4 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[51816,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"default"] 2:I[51816,["/_next/static/chunks/4898d4a341eb8639.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/caa5e4031b9d7340.js"],"default"]
3:I[61240,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"default"] 3:I[61240,["/_next/static/chunks/4898d4a341eb8639.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/caa5e4031b9d7340.js"],"default"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
@@ -1,5 +1,5 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[91865,["/_next/static/chunks/be022f253dbbf9ad.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/caa5e4031b9d7340.js"],"OutletBoundary"] 2:I[91865,["/_next/static/chunks/4898d4a341eb8639.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/3acbe26d2665d2b1.js","/_next/static/chunks/caa5e4031b9d7340.js"],"OutletBoundary"]
3:"$Sreact.suspense" 3:"$Sreact.suspense"
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
4:null 4:null
@@ -1,3 +1,3 @@
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"/_not-found","paramType":null,"paramKey":"/_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
File diff suppressed because one or more lines are too long
@@ -6,12 +6,12 @@
], ],
"lowPriorityFiles": [], "lowPriorityFiles": [],
"rootMainFiles": [ "rootMainFiles": [
"static/chunks/fca12c8710bac04f.js", "static/chunks/c74c28613e683555.js",
"static/chunks/00501d8005072065.js", "static/chunks/00501d8005072065.js",
"static/chunks/dae599f36ada12e5.js", "static/chunks/dae599f36ada12e5.js",
"static/chunks/c8d8a9d45df7b3b4.js", "static/chunks/c8d8a9d45df7b3b4.js",
"static/chunks/e8bd79bd269e9b4f.js", "static/chunks/e8bd79bd269e9b4f.js",
"static/chunks/turbopack-1482dc2f7aa839a8.js" "static/chunks/turbopack-8fcff53edef506b4.js"
], ],
"pages": {}, "pages": {},
"ampFirstPages": [] "ampFirstPages": []
File diff suppressed because one or more lines are too long
@@ -1,7 +1,8 @@
var R=require("../../../../../chunks/[turbopack]_runtime.js")("server/app/api/trees/[treeId]/members/route.js") var R=require("../../../../../chunks/[turbopack]_runtime.js")("server/app/api/trees/[treeId]/members/route.js")
R.c("server/chunks/[root-of-the-server]__15f7a808._.js") R.c("server/chunks/[root-of-the-server]__2b21a1c8._.js")
R.c("server/chunks/221ab_next_993738f5._.js")
R.c("server/chunks/[root-of-the-server]__cb768f25._.js") R.c("server/chunks/[root-of-the-server]__cb768f25._.js")
R.c("server/chunks/221ab_next_dist_esm_build_templates_app-route_d8f50cc5.js")
R.c("server/chunks/221ab_next_993738f5._.js")
R.c("server/chunks/[root-of-the-server]__f8925229._.js") R.c("server/chunks/[root-of-the-server]__f8925229._.js")
R.c("server/chunks/[root-of-the-server]__7043aeef._.js") R.c("server/chunks/[root-of-the-server]__7043aeef._.js")
R.c("server/chunks/34945_zod_v3_external_9e6d73f0.js") R.c("server/chunks/34945_zod_v3_external_9e6d73f0.js")
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+8 -8
View File
@@ -1,25 +1,25 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
9:I[88825,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/269a7f1115bc3068.js"],"default"] 9:I[88825,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/269a7f1115bc3068.js"],"default"]
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
d:"$Sreact.suspense" d:"$Sreact.suspense"
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"] f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","auth","register"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["register",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/269a7f1115bc3068.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true} 0:{"P":null,"b":"15cFgZF_0_x1wZ_VPstJS","c":["","auth","register"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["register",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/269a7f1115bc3068.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
a:{} a:{}
b:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" b:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]] 12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
e:null e:null
@@ -1,25 +1,25 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
9:I[88825,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/269a7f1115bc3068.js"],"default"] 9:I[88825,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/269a7f1115bc3068.js"],"default"]
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
d:"$Sreact.suspense" d:"$Sreact.suspense"
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"] f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","auth","register"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["register",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/269a7f1115bc3068.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true} 0:{"P":null,"b":"15cFgZF_0_x1wZ_VPstJS","c":["","auth","register"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["register",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/269a7f1115bc3068.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
a:{} a:{}
b:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" b:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]] 12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
e:null e:null
@@ -3,6 +3,6 @@
4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
5:"$Sreact.suspense" 5:"$Sreact.suspense"
7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]] 6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]]
@@ -1,10 +1,10 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false}
@@ -1,5 +1,5 @@
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"auth","paramType":null,"paramKey":"auth","hasRuntimePrefetch":false,"slots":{"children":{"name":"register","paramType":null,"paramKey":"register","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"auth","paramType":null,"paramKey":"auth","hasRuntimePrefetch":false,"slots":{"children":{"name":"register","paramType":null,"paramKey":"register","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
@@ -1,4 +1,4 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
@@ -1,4 +1,4 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
@@ -1,9 +1,9 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
3:I[88825,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/269a7f1115bc3068.js"],"default"] 3:I[88825,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/269a7f1115bc3068.js"],"default"]
6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] 6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
7:"$Sreact.suspense" 7:"$Sreact.suspense"
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/269a7f1115bc3068.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/269a7f1115bc3068.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
4:{} 4:{}
5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
8:null 8:null
File diff suppressed because one or more lines are too long
@@ -6,12 +6,12 @@
], ],
"lowPriorityFiles": [], "lowPriorityFiles": [],
"rootMainFiles": [ "rootMainFiles": [
"static/chunks/fca12c8710bac04f.js", "static/chunks/c74c28613e683555.js",
"static/chunks/00501d8005072065.js", "static/chunks/00501d8005072065.js",
"static/chunks/dae599f36ada12e5.js", "static/chunks/dae599f36ada12e5.js",
"static/chunks/c8d8a9d45df7b3b4.js", "static/chunks/c8d8a9d45df7b3b4.js",
"static/chunks/e8bd79bd269e9b4f.js", "static/chunks/e8bd79bd269e9b4f.js",
"static/chunks/turbopack-1482dc2f7aa839a8.js" "static/chunks/turbopack-8fcff53edef506b4.js"
], ],
"pages": {}, "pages": {},
"ampFirstPages": [] "ampFirstPages": []
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+8 -8
View File
@@ -1,25 +1,25 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
9:I[81544,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/ea3204b87d11e9b2.js"],"default"] 9:I[81544,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/ea3204b87d11e9b2.js"],"default"]
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
d:"$Sreact.suspense" d:"$Sreact.suspense"
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"] f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","auth","signin"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["signin",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/ea3204b87d11e9b2.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true} 0:{"P":null,"b":"15cFgZF_0_x1wZ_VPstJS","c":["","auth","signin"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["signin",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/ea3204b87d11e9b2.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
a:{} a:{}
b:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" b:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]] 12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
e:null e:null
@@ -1,25 +1,25 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
9:I[81544,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/ea3204b87d11e9b2.js"],"default"] 9:I[81544,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/ea3204b87d11e9b2.js"],"default"]
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
d:"$Sreact.suspense" d:"$Sreact.suspense"
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"] f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","auth","signin"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["signin",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/ea3204b87d11e9b2.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true} 0:{"P":null,"b":"15cFgZF_0_x1wZ_VPstJS","c":["","auth","signin"],"q":"","i":false,"f":[[["",{"children":["auth",{"children":["signin",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/ea3204b87d11e9b2.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
a:{} a:{}
b:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" b:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]] 12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
e:null e:null
@@ -3,6 +3,6 @@
4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
5:"$Sreact.suspense" 5:"$Sreact.suspense"
7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]] 6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]]
@@ -1,10 +1,10 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false}
@@ -1,5 +1,5 @@
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"auth","paramType":null,"paramKey":"auth","hasRuntimePrefetch":false,"slots":{"children":{"name":"signin","paramType":null,"paramKey":"signin","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"auth","paramType":null,"paramKey":"auth","hasRuntimePrefetch":false,"slots":{"children":{"name":"signin","paramType":null,"paramKey":"signin","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
@@ -1,4 +1,4 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
@@ -1,4 +1,4 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
@@ -1,9 +1,9 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
3:I[81544,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/ea3204b87d11e9b2.js"],"default"] 3:I[81544,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/ea3204b87d11e9b2.js"],"default"]
6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] 6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
7:"$Sreact.suspense" 7:"$Sreact.suspense"
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/ea3204b87d11e9b2.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/ea3204b87d11e9b2.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
4:{} 4:{}
5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
8:null 8:null
File diff suppressed because one or more lines are too long
@@ -6,12 +6,12 @@
], ],
"lowPriorityFiles": [], "lowPriorityFiles": [],
"rootMainFiles": [ "rootMainFiles": [
"static/chunks/fca12c8710bac04f.js", "static/chunks/c74c28613e683555.js",
"static/chunks/00501d8005072065.js", "static/chunks/00501d8005072065.js",
"static/chunks/dae599f36ada12e5.js", "static/chunks/dae599f36ada12e5.js",
"static/chunks/c8d8a9d45df7b3b4.js", "static/chunks/c8d8a9d45df7b3b4.js",
"static/chunks/e8bd79bd269e9b4f.js", "static/chunks/e8bd79bd269e9b4f.js",
"static/chunks/turbopack-1482dc2f7aa839a8.js" "static/chunks/turbopack-8fcff53edef506b4.js"
], ],
"pages": {}, "pages": {},
"ampFirstPages": [] "ampFirstPages": []
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+8 -8
View File
@@ -1,25 +1,25 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
9:I[64356,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/394590bab54d261d.js","/_next/static/chunks/d009ea57c26b3da6.js"],"default"] 9:I[64356,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/e348d6daa57b1e76.js","/_next/static/chunks/d55cd81f0fa2dfcd.js","/_next/static/chunks/247c2081503fcfa9.js"],"default"]
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
d:"$Sreact.suspense" d:"$Sreact.suspense"
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"] f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","help"],"q":"","i":false,"f":[[["",{"children":["help",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/394590bab54d261d.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/d009ea57c26b3da6.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true} 0:{"P":null,"b":"15cFgZF_0_x1wZ_VPstJS","c":["","help"],"q":"","i":false,"f":[[["",{"children":["help",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/e348d6daa57b1e76.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/d55cd81f0fa2dfcd.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/247c2081503fcfa9.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
a:{} a:{}
b:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" b:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]] 12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
e:null e:null
@@ -1,25 +1,25 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
9:I[64356,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/394590bab54d261d.js","/_next/static/chunks/d009ea57c26b3da6.js"],"default"] 9:I[64356,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/e348d6daa57b1e76.js","/_next/static/chunks/d55cd81f0fa2dfcd.js","/_next/static/chunks/247c2081503fcfa9.js"],"default"]
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
d:"$Sreact.suspense" d:"$Sreact.suspense"
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"] f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","help"],"q":"","i":false,"f":[[["",{"children":["help",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/394590bab54d261d.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/d009ea57c26b3da6.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true} 0:{"P":null,"b":"15cFgZF_0_x1wZ_VPstJS","c":["","help"],"q":"","i":false,"f":[[["",{"children":["help",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/e348d6daa57b1e76.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/d55cd81f0fa2dfcd.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/247c2081503fcfa9.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
a:{} a:{}
b:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" b:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]] 12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
e:null e:null
@@ -3,6 +3,6 @@
4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
5:"$Sreact.suspense" 5:"$Sreact.suspense"
7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]] 6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]]
@@ -1,10 +1,10 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false}
@@ -1,5 +1,5 @@
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"help","paramType":null,"paramKey":"help","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"help","paramType":null,"paramKey":"help","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
@@ -1,4 +1,4 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
@@ -1,9 +1,9 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
3:I[64356,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/394590bab54d261d.js","/_next/static/chunks/d009ea57c26b3da6.js"],"default"] 3:I[64356,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/e348d6daa57b1e76.js","/_next/static/chunks/d55cd81f0fa2dfcd.js","/_next/static/chunks/247c2081503fcfa9.js"],"default"]
6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] 6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
7:"$Sreact.suspense" 7:"$Sreact.suspense"
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/394590bab54d261d.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/d009ea57c26b3da6.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/e348d6daa57b1e76.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/d55cd81f0fa2dfcd.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/247c2081503fcfa9.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
4:{} 4:{}
5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
8:null 8:null
File diff suppressed because one or more lines are too long
@@ -6,12 +6,12 @@
], ],
"lowPriorityFiles": [], "lowPriorityFiles": [],
"rootMainFiles": [ "rootMainFiles": [
"static/chunks/fca12c8710bac04f.js", "static/chunks/c74c28613e683555.js",
"static/chunks/00501d8005072065.js", "static/chunks/00501d8005072065.js",
"static/chunks/dae599f36ada12e5.js", "static/chunks/dae599f36ada12e5.js",
"static/chunks/c8d8a9d45df7b3b4.js", "static/chunks/c8d8a9d45df7b3b4.js",
"static/chunks/e8bd79bd269e9b4f.js", "static/chunks/e8bd79bd269e9b4f.js",
"static/chunks/turbopack-1482dc2f7aa839a8.js" "static/chunks/turbopack-8fcff53edef506b4.js"
], ],
"pages": {}, "pages": {},
"ampFirstPages": [] "ampFirstPages": []
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+8 -8
View File
@@ -1,25 +1,25 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
9:I[10107,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/7a79f51abcc26778.js","/_next/static/chunks/378de8a598b68325.js","/_next/static/chunks/437fed79e1a0dc56.js","/_next/static/chunks/56372136e9337243.js","/_next/static/chunks/41d74568aac21cdf.js","/_next/static/chunks/50a729e4d251c9bb.js"],"default"] 9:I[10107,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/275a531f50d47960.js","/_next/static/chunks/378de8a598b68325.js","/_next/static/chunks/108e1123804e7729.js","/_next/static/chunks/bea1c31e9f37ff04.js","/_next/static/chunks/247c2081503fcfa9.js","/_next/static/chunks/dc0bee989ea6e2cd.js"],"default"]
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
d:"$Sreact.suspense" d:"$Sreact.suspense"
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"] f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7a79f51abcc26778.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/378de8a598b68325.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/437fed79e1a0dc56.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/56372136e9337243.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/41d74568aac21cdf.js","async":true,"nonce":"$undefined"}],["$","script","script-5",{"src":"/_next/static/chunks/50a729e4d251c9bb.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true} 0:{"P":null,"b":"15cFgZF_0_x1wZ_VPstJS","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/275a531f50d47960.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/378de8a598b68325.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/108e1123804e7729.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/bea1c31e9f37ff04.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/247c2081503fcfa9.js","async":true,"nonce":"$undefined"}],["$","script","script-5",{"src":"/_next/static/chunks/dc0bee989ea6e2cd.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
a:{} a:{}
b:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params" b:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]] 12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
e:null e:null
@@ -1,9 +1,9 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
3:I[10107,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/7a79f51abcc26778.js","/_next/static/chunks/378de8a598b68325.js","/_next/static/chunks/437fed79e1a0dc56.js","/_next/static/chunks/56372136e9337243.js","/_next/static/chunks/41d74568aac21cdf.js","/_next/static/chunks/50a729e4d251c9bb.js"],"default"] 3:I[10107,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/275a531f50d47960.js","/_next/static/chunks/378de8a598b68325.js","/_next/static/chunks/108e1123804e7729.js","/_next/static/chunks/bea1c31e9f37ff04.js","/_next/static/chunks/247c2081503fcfa9.js","/_next/static/chunks/dc0bee989ea6e2cd.js"],"default"]
6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] 6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
7:"$Sreact.suspense" 7:"$Sreact.suspense"
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7a79f51abcc26778.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/378de8a598b68325.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/437fed79e1a0dc56.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/56372136e9337243.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/41d74568aac21cdf.js","async":true}],["$","script","script-5",{"src":"/_next/static/chunks/50a729e4d251c9bb.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/275a531f50d47960.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/378de8a598b68325.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/108e1123804e7729.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/bea1c31e9f37ff04.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/247c2081503fcfa9.js","async":true}],["$","script","script-5",{"src":"/_next/static/chunks/dc0bee989ea6e2cd.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
4:{} 4:{}
5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
8:null 8:null
@@ -1,25 +1,25 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
9:I[10107,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/7a79f51abcc26778.js","/_next/static/chunks/378de8a598b68325.js","/_next/static/chunks/437fed79e1a0dc56.js","/_next/static/chunks/56372136e9337243.js","/_next/static/chunks/41d74568aac21cdf.js","/_next/static/chunks/50a729e4d251c9bb.js"],"default"] 9:I[10107,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/275a531f50d47960.js","/_next/static/chunks/378de8a598b68325.js","/_next/static/chunks/108e1123804e7729.js","/_next/static/chunks/bea1c31e9f37ff04.js","/_next/static/chunks/247c2081503fcfa9.js","/_next/static/chunks/dc0bee989ea6e2cd.js"],"default"]
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
d:"$Sreact.suspense" d:"$Sreact.suspense"
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"] f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7a79f51abcc26778.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/378de8a598b68325.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/437fed79e1a0dc56.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/56372136e9337243.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/41d74568aac21cdf.js","async":true,"nonce":"$undefined"}],["$","script","script-5",{"src":"/_next/static/chunks/50a729e4d251c9bb.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true} 0:{"P":null,"b":"15cFgZF_0_x1wZ_VPstJS","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/275a531f50d47960.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/378de8a598b68325.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/108e1123804e7729.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/bea1c31e9f37ff04.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/247c2081503fcfa9.js","async":true,"nonce":"$undefined"}],["$","script","script-5",{"src":"/_next/static/chunks/dc0bee989ea6e2cd.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
a:{} a:{}
b:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params" b:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]] 12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
e:null e:null
@@ -3,6 +3,6 @@
4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
5:"$Sreact.suspense" 5:"$Sreact.suspense"
7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]] 6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]]
@@ -1,10 +1,10 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false}
@@ -1,5 +1,5 @@
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":true},"staleTime":300} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
File diff suppressed because one or more lines are too long
+8 -8
View File
@@ -1,25 +1,25 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
9:I[61339,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/d7473cf5faeaea5e.js","/_next/static/chunks/9986f41fad2ace79.js","/_next/static/chunks/41d74568aac21cdf.js","/_next/static/chunks/d009ea57c26b3da6.js"],"default"] 9:I[61339,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/59cd549e4f2182e6.js","/_next/static/chunks/d7473cf5faeaea5e.js","/_next/static/chunks/247c2081503fcfa9.js","/_next/static/chunks/d55cd81f0fa2dfcd.js","/_next/static/chunks/8c211ce3501e19fe.js"],"default"]
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
d:"$Sreact.suspense" d:"$Sreact.suspense"
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"] f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","members"],"q":"","i":false,"f":[[["",{"children":["members",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/d7473cf5faeaea5e.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9986f41fad2ace79.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/41d74568aac21cdf.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/d009ea57c26b3da6.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},[null,[],[]],false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true} 0:{"P":null,"b":"15cFgZF_0_x1wZ_VPstJS","c":["","members"],"q":"","i":false,"f":[[["",{"children":["members",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/59cd549e4f2182e6.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/d7473cf5faeaea5e.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/247c2081503fcfa9.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/d55cd81f0fa2dfcd.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/8c211ce3501e19fe.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},[null,[],[]],false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
a:{} a:{}
b:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" b:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]] 12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
e:null e:null
@@ -1,25 +1,25 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 8:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
9:I[61339,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/d7473cf5faeaea5e.js","/_next/static/chunks/9986f41fad2ace79.js","/_next/static/chunks/41d74568aac21cdf.js","/_next/static/chunks/d009ea57c26b3da6.js"],"default"] 9:I[61339,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/59cd549e4f2182e6.js","/_next/static/chunks/d7473cf5faeaea5e.js","/_next/static/chunks/247c2081503fcfa9.js","/_next/static/chunks/d55cd81f0fa2dfcd.js","/_next/static/chunks/8c211ce3501e19fe.js"],"default"]
c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] c:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
d:"$Sreact.suspense" d:"$Sreact.suspense"
f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"] f:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ViewportBoundary"]
11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 11:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 13:I[55065,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"P":null,"b":"NAO-lsKimvD1dA_Uih5A8","c":["","members"],"q":"","i":false,"f":[[["",{"children":["members",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/d7473cf5faeaea5e.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/9986f41fad2ace79.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/41d74568aac21cdf.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/d009ea57c26b3da6.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},[null,[],[]],false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true} 0:{"P":null,"b":"15cFgZF_0_x1wZ_VPstJS","c":["","members"],"q":"","i":false,"f":[[["",{"children":["members",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/59cd549e4f2182e6.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/d7473cf5faeaea5e.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/247c2081503fcfa9.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/d55cd81f0fa2dfcd.js","async":true,"nonce":"$undefined"}],["$","script","script-4",{"src":"/_next/static/chunks/8c211ce3501e19fe.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},[null,[],[]],false,false]},[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"ref":"$undefined","xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$@10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$@12"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
a:{} a:{}
b:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params" b:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 14:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]] 12:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json","crossOrigin":"$undefined"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L14","9",{}]]
e:null e:null
@@ -3,6 +3,6 @@
4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
5:"$Sreact.suspense" 5:"$Sreact.suspense"
7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]] 6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]]
@@ -1,10 +1,10 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false}
@@ -1,5 +1,5 @@
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"members","paramType":null,"paramKey":"members","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"members","paramType":null,"paramKey":"members","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
@@ -1,4 +1,4 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":[null,[],[]],"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":[null,[],[]],"isPartial":false}
@@ -1,9 +1,9 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
3:I[61339,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/d7473cf5faeaea5e.js","/_next/static/chunks/9986f41fad2ace79.js","/_next/static/chunks/41d74568aac21cdf.js","/_next/static/chunks/d009ea57c26b3da6.js"],"default"] 3:I[61339,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/59cd549e4f2182e6.js","/_next/static/chunks/d7473cf5faeaea5e.js","/_next/static/chunks/247c2081503fcfa9.js","/_next/static/chunks/d55cd81f0fa2dfcd.js","/_next/static/chunks/8c211ce3501e19fe.js"],"default"]
6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] 6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
7:"$Sreact.suspense" 7:"$Sreact.suspense"
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/d7473cf5faeaea5e.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/9986f41fad2ace79.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/41d74568aac21cdf.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/d009ea57c26b3da6.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/59cd549e4f2182e6.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/d7473cf5faeaea5e.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/247c2081503fcfa9.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/d55cd81f0fa2dfcd.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/8c211ce3501e19fe.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
4:{} 4:{}
5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
8:null 8:null
File diff suppressed because one or more lines are too long
@@ -6,12 +6,12 @@
], ],
"lowPriorityFiles": [], "lowPriorityFiles": [],
"rootMainFiles": [ "rootMainFiles": [
"static/chunks/fca12c8710bac04f.js", "static/chunks/c74c28613e683555.js",
"static/chunks/00501d8005072065.js", "static/chunks/00501d8005072065.js",
"static/chunks/dae599f36ada12e5.js", "static/chunks/dae599f36ada12e5.js",
"static/chunks/c8d8a9d45df7b3b4.js", "static/chunks/c8d8a9d45df7b3b4.js",
"static/chunks/e8bd79bd269e9b4f.js", "static/chunks/e8bd79bd269e9b4f.js",
"static/chunks/turbopack-1482dc2f7aa839a8.js" "static/chunks/turbopack-8fcff53edef506b4.js"
], ],
"pages": {}, "pages": {},
"ampFirstPages": [] "ampFirstPages": []
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -3,6 +3,6 @@
4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"] 4:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"MetadataBoundary"]
5:"$Sreact.suspense" 5:"$Sreact.suspense"
7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"] 7:I[19533,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"IconMark"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],["$","meta",null,{"name":"next-size-adjust","content":""}]]}],"loading":null,"isPartial":false}
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]] 3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"}]]
6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]] 6:[["$","title","0",{"children":"华夏家谱 - 中国家族树管理系统"}],["$","meta","1",{"name":"description","content":"现代化的中国家族树管理系统,支持多用户协作、权限管理、数据导入导出等功能"}],["$","link","2",{"rel":"manifest","href":"/manifest.json"}],["$","meta","3",{"name":"generator","content":"v0.app"}],["$","meta","4",{"name":"mobile-web-app-capable","content":"yes"}],["$","meta","5",{"name":"apple-mobile-web-app-title","content":"华夏家谱"}],["$","meta","6",{"name":"apple-mobile-web-app-status-bar-style","content":"default"}],["$","link","7",{"rel":"icon","href":"/icon.svg","type":"image/svg+xml"}],["$","link","8",{"rel":"apple-touch-icon","href":"/icon.svg"}],["$","$L7","9",{}]]
@@ -1,10 +1,10 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[25146,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"SessionProvider"] 2:I[25146,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"SessionProvider"]
3:I[33155,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"DialogProvider"] 3:I[33155,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"DialogProvider"]
4:I[47489,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"FamilyProvider"] 4:I[47489,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"FamilyProvider"]
5:I[43657,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js"],"PWAProvider"] 5:I[43657,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js"],"PWAProvider"]
6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 6:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 7:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/b2f0c8e6952e0295.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/3098e9ae07ac83e9.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/70f0d58ba86d9703.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/c1163901e239a981.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/8a80e7184ad3a13f.css","precedence":"next"}],["$","link","1",{"rel":"stylesheet","href":"/_next/static/chunks/cf5a7a0d853da2cc.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/8e5bcb1eb6dc89c0.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/641b4d38e1918561.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/caa5e4031b9d7340.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/0652826272d3419f.js","async":true}]],["$","html",null,{"lang":"zh-CN","children":["$","body",null,{"className":"font-serif antialiased","children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"children":["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]}]}]]}],"loading":[["$","div","l",{"className":"min-h-screen flex items-center justify-center bg-background","children":["$","div",null,{"className":"flex flex-col items-center gap-4","children":[["$","svg",null,{"xmlns":"http://www.w3.org/2000/svg","width":24,"height":24,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":2,"strokeLinecap":"round","strokeLinejoin":"round","className":"lucide lucide-loader-circle h-10 w-10 animate-spin text-primary","children":[["$","path","13zald",{"d":"M21 12a9 9 0 1 1-6.219-8.56"}],"$undefined"]}],["$","p",null,{"className":"text-sm text-muted-foreground font-serif","children":"加载中..."}]]}]}],[],[]],"isPartial":false}
@@ -1,6 +1,6 @@
:HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"] :HL["/_next/static/chunks/8a80e7184ad3a13f.css","style"]
:HL["/_next/static/chunks/b2f0c8e6952e0295.css","style"] :HL["/_next/static/chunks/cf5a7a0d853da2cc.css","style"]
:HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}] :HL["/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
:HL["/_next/static/chunks/ef0b495c2229bec7.css","style"] :HL["/_next/static/chunks/ef0b495c2229bec7.css","style"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"members","paramType":null,"paramKey":"members","hasRuntimePrefetch":false,"slots":{"children":{"name":"new","paramType":null,"paramKey":"new","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"members","paramType":null,"paramKey":"members","hasRuntimePrefetch":false,"slots":{"children":{"name":"new","paramType":null,"paramKey":"new","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
@@ -1,4 +1,4 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":[null,[],[]],"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":[null,[],[]],"isPartial":false}
@@ -1,4 +1,4 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 2:I[51816,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"] 3:I[61240,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"default"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
@@ -1,10 +1,10 @@
1:"$Sreact.fragment" 1:"$Sreact.fragment"
2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"] 2:I[41542,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"ClientPageRoot"]
3:I[74973,["/_next/static/chunks/3098e9ae07ac83e9.js","/_next/static/chunks/70f0d58ba86d9703.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/c1163901e239a981.js","/_next/static/chunks/b628540073aae7f1.js","/_next/static/chunks/d7473cf5faeaea5e.js","/_next/static/chunks/e8cc5bcddfcdf4a7.js","/_next/static/chunks/d009ea57c26b3da6.js","/_next/static/chunks/6a01742e33e23f60.js"],"default"] 3:I[74973,["/_next/static/chunks/8e5bcb1eb6dc89c0.js","/_next/static/chunks/641b4d38e1918561.js","/_next/static/chunks/caa5e4031b9d7340.js","/_next/static/chunks/0652826272d3419f.js","/_next/static/chunks/18a80ca329b6ca37.js","/_next/static/chunks/d7473cf5faeaea5e.js","/_next/static/chunks/8574e1f4680bdd85.js","/_next/static/chunks/daaf577eb2bfefe0.js","/_next/static/chunks/247c2081503fcfa9.js","/_next/static/chunks/d55cd81f0fa2dfcd.js"],"default"]
6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"] 6:I[91865,["/_next/static/chunks/2cce29c82e2b8fb0.js","/_next/static/chunks/3acbe26d2665d2b1.js"],"OutletBoundary"]
7:"$Sreact.suspense" 7:"$Sreact.suspense"
:HL["/_next/static/chunks/ef0b495c2229bec7.css","style"] :HL["/_next/static/chunks/ef0b495c2229bec7.css","style"]
0:{"buildId":"NAO-lsKimvD1dA_Uih5A8","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ef0b495c2229bec7.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/b628540073aae7f1.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/d7473cf5faeaea5e.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/e8cc5bcddfcdf4a7.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/d009ea57c26b3da6.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/6a01742e33e23f60.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false} 0:{"buildId":"15cFgZF_0_x1wZ_VPstJS","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ef0b495c2229bec7.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/18a80ca329b6ca37.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/d7473cf5faeaea5e.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/8574e1f4680bdd85.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/daaf577eb2bfefe0.js","async":true}],["$","script","script-4",{"src":"/_next/static/chunks/247c2081503fcfa9.js","async":true}],["$","script","script-5",{"src":"/_next/static/chunks/d55cd81f0fa2dfcd.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
4:{} 4:{}
5:"$0:rsc:props:children:0:props:serverProvidedParams:params" 5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
8:null 8:null
File diff suppressed because one or more lines are too long
@@ -6,12 +6,12 @@
], ],
"lowPriorityFiles": [], "lowPriorityFiles": [],
"rootMainFiles": [ "rootMainFiles": [
"static/chunks/fca12c8710bac04f.js", "static/chunks/c74c28613e683555.js",
"static/chunks/00501d8005072065.js", "static/chunks/00501d8005072065.js",
"static/chunks/dae599f36ada12e5.js", "static/chunks/dae599f36ada12e5.js",
"static/chunks/c8d8a9d45df7b3b4.js", "static/chunks/c8d8a9d45df7b3b4.js",
"static/chunks/e8bd79bd269e9b4f.js", "static/chunks/e8bd79bd269e9b4f.js",
"static/chunks/turbopack-1482dc2f7aa839a8.js" "static/chunks/turbopack-8fcff53edef506b4.js"
], ],
"pages": {}, "pages": {},
"ampFirstPages": [] "ampFirstPages": []
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -6,12 +6,12 @@
], ],
"lowPriorityFiles": [], "lowPriorityFiles": [],
"rootMainFiles": [ "rootMainFiles": [
"static/chunks/fca12c8710bac04f.js", "static/chunks/c74c28613e683555.js",
"static/chunks/00501d8005072065.js", "static/chunks/00501d8005072065.js",
"static/chunks/dae599f36ada12e5.js", "static/chunks/dae599f36ada12e5.js",
"static/chunks/c8d8a9d45df7b3b4.js", "static/chunks/c8d8a9d45df7b3b4.js",
"static/chunks/e8bd79bd269e9b4f.js", "static/chunks/e8bd79bd269e9b4f.js",
"static/chunks/turbopack-1482dc2f7aa839a8.js" "static/chunks/turbopack-8fcff53edef506b4.js"
], ],
"pages": {}, "pages": {},
"ampFirstPages": [] "ampFirstPages": []
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -6,12 +6,12 @@
], ],
"lowPriorityFiles": [], "lowPriorityFiles": [],
"rootMainFiles": [ "rootMainFiles": [
"static/chunks/fca12c8710bac04f.js", "static/chunks/c74c28613e683555.js",
"static/chunks/00501d8005072065.js", "static/chunks/00501d8005072065.js",
"static/chunks/dae599f36ada12e5.js", "static/chunks/dae599f36ada12e5.js",
"static/chunks/c8d8a9d45df7b3b4.js", "static/chunks/c8d8a9d45df7b3b4.js",
"static/chunks/e8bd79bd269e9b4f.js", "static/chunks/e8bd79bd269e9b4f.js",
"static/chunks/turbopack-1482dc2f7aa839a8.js" "static/chunks/turbopack-8fcff53edef506b4.js"
], ],
"pages": {}, "pages": {},
"ampFirstPages": [] "ampFirstPages": []
File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More