change
This commit is contained in:
@@ -14,6 +14,13 @@ import CssBaseline from "@mui/material/CssBaseline";
|
||||
import { styled } from "@mui/material/styles";
|
||||
import ListSubheader from "@mui/material/ListSubheader";
|
||||
import useScrollTrigger from "@mui/material/useScrollTrigger";
|
||||
import Drawer from "@mui/material/Drawer";
|
||||
import IconButton from "@mui/material/IconButton";
|
||||
import List from "@mui/material/List";
|
||||
import ListItem from "@mui/material/ListItem";
|
||||
import ListItemText from "@mui/material/ListItemText";
|
||||
import Divider from "@mui/material/Divider";
|
||||
import ChevronRightIcon from "@mui/icons-material/ChevronRight";
|
||||
|
||||
function colorLog(message: string, color: 'reset' | 'red' | 'green' | 'yellow' | 'blue') {
|
||||
const colors = {
|
||||
@@ -56,6 +63,24 @@ interface ClientLayoutProps {
|
||||
const ClientLayout: React.FC<ClientLayoutProps> = ({ children }) => {
|
||||
// 将hooks移到组件内部
|
||||
const [anchorEl, setAnchorEl] = React.useState<null | HTMLElement>(null);
|
||||
const [mobileDrawerOpen, setMobileDrawerOpen] = React.useState(false);
|
||||
const [isMobile, setIsMobile] = React.useState(false);
|
||||
|
||||
// 监听窗口大小变化,判断是否为移动设备
|
||||
React.useEffect(() => {
|
||||
const handleResize = () => {
|
||||
setIsMobile(window.innerWidth < 768); // 768px为移动端断点
|
||||
};
|
||||
|
||||
// 初始化时判断
|
||||
handleResize();
|
||||
|
||||
// 添加事件监听器
|
||||
window.addEventListener('resize', handleResize);
|
||||
|
||||
// 清理函数
|
||||
return () => window.removeEventListener('resize', handleResize);
|
||||
}, []);
|
||||
|
||||
const handleMenu = (event: React.MouseEvent<HTMLElement>) => {
|
||||
setAnchorEl(event.currentTarget);
|
||||
@@ -64,6 +89,112 @@ const ClientLayout: React.FC<ClientLayoutProps> = ({ children }) => {
|
||||
const handleClose = () => {
|
||||
setAnchorEl(null);
|
||||
};
|
||||
|
||||
// 定义顶栏导航项的类型
|
||||
interface NavItem {
|
||||
id: string;
|
||||
label: string;
|
||||
href: string;
|
||||
type: 'link' | 'menu';
|
||||
children?: NavItem[];
|
||||
}
|
||||
|
||||
// 定义导航项目菜单的类型
|
||||
interface ProjectItem {
|
||||
id: string;
|
||||
label: string;
|
||||
href: string;
|
||||
category: string;
|
||||
}
|
||||
|
||||
// 动态定义顶部导航链接
|
||||
const navItems: NavItem[] = [
|
||||
{
|
||||
id: 'home',
|
||||
label: 'LeonCloud',
|
||||
href: '/',
|
||||
type: 'link'
|
||||
},
|
||||
{
|
||||
id: 'project',
|
||||
label: '项目',
|
||||
href: '',
|
||||
type: 'menu'
|
||||
},
|
||||
{
|
||||
id: 'support',
|
||||
label: '技术支持',
|
||||
href: '/support',
|
||||
type: 'link'
|
||||
},
|
||||
{
|
||||
id: 'joinus',
|
||||
label: '加入我们',
|
||||
href: '/joinus',
|
||||
type: 'link'
|
||||
}
|
||||
];
|
||||
|
||||
// 动态定义项目列表
|
||||
const projectItems: ProjectItem[] = [
|
||||
{
|
||||
id: 'leonpan',
|
||||
label: 'LeonPan',
|
||||
href: '/project/leonpan',
|
||||
category: 'Web'
|
||||
},
|
||||
{
|
||||
id: 'leonapp',
|
||||
label: 'LeonAPP',
|
||||
href: '/project/leonapp',
|
||||
category: 'Web'
|
||||
},
|
||||
{
|
||||
id: 'leonbasic',
|
||||
label: 'LeonBasic',
|
||||
href: '/project/leonbasic',
|
||||
category: '其它'
|
||||
}
|
||||
];
|
||||
|
||||
// 按分类组织项目
|
||||
const projectsByCategory = projectItems.reduce((acc, item) => {
|
||||
if (!acc[item.category]) {
|
||||
acc[item.category] = [];
|
||||
}
|
||||
acc[item.category].push(item);
|
||||
return acc;
|
||||
}, {} as Record<string, ProjectItem[]>);
|
||||
|
||||
// 侧边栏开关控制
|
||||
const toggleDrawer = (open: boolean) => () => {
|
||||
setMobileDrawerOpen(open);
|
||||
};
|
||||
|
||||
// 侧边栏项目点击处理
|
||||
const handleDrawerItemClick = (href: string) => {
|
||||
window.location.href = href;
|
||||
setMobileDrawerOpen(false);
|
||||
};
|
||||
|
||||
// 分类展开状态管理 - 现在在projectsByCategory定义之后初始化
|
||||
const [expandedCategories, setExpandedCategories] = React.useState<Record<string, boolean>>({
|
||||
// 直接初始化所有已知分类为展开状态
|
||||
'Web': true,
|
||||
'其它': true
|
||||
});
|
||||
|
||||
// 项目部分的展开状态管理
|
||||
const [projectsExpanded, setProjectsExpanded] = React.useState(false);
|
||||
|
||||
// 切换分类展开/收缩状态
|
||||
const toggleCategory = (category: string) => {
|
||||
setExpandedCategories(prev => ({
|
||||
...prev,
|
||||
[category]: !prev[category]
|
||||
}));
|
||||
};
|
||||
|
||||
interface Props {
|
||||
/**
|
||||
* Injected by the documentation to work in an iframe.
|
||||
@@ -97,85 +228,246 @@ const ClientLayout: React.FC<ClientLayoutProps> = ({ children }) => {
|
||||
<Box sx={{ flexGrow: 1 }}>
|
||||
<AppBar position="static">
|
||||
<Toolbar>
|
||||
{/* 左侧区域:Logo和项目按钮 */}
|
||||
<Box sx={{ display: "flex", alignItems: "center" }}>
|
||||
{/* 响应式顶栏 - 移动端显示汉堡菜单,桌面端显示完整导航 */}
|
||||
<Box sx={{ display: "flex", alignItems: "center", flexGrow: 1 }}>
|
||||
{/* 移动端:汉堡菜单按钮 */}
|
||||
{isMobile && (
|
||||
<IconButton
|
||||
color="inherit"
|
||||
aria-label="打开菜单"
|
||||
edge="start"
|
||||
onClick={toggleDrawer(true)}
|
||||
sx={{ mr: 2 }}
|
||||
>
|
||||
<Box sx={{
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
justifyContent: 'space-between',
|
||||
width: 24,
|
||||
height: 18
|
||||
}}>
|
||||
<Box sx={{ height: 2, bgcolor: 'white', width: '100%' }} />
|
||||
<Box sx={{ height: 2, bgcolor: 'white', width: '100%' }} />
|
||||
<Box sx={{ height: 2, bgcolor: 'white', width: '100%' }} />
|
||||
</Box>
|
||||
</IconButton>
|
||||
)}
|
||||
|
||||
{/* 首页链接(在所有设备上都显示) */}
|
||||
<Typography
|
||||
variant="h6"
|
||||
variant={isMobile ? "h6" : "h6"}
|
||||
component="div"
|
||||
sx={{ mr: 2, cursor: 'pointer' }}
|
||||
onClick={() => (window.location.href = "/")}
|
||||
sx={{
|
||||
cursor: 'pointer',
|
||||
'&:hover': {
|
||||
opacity: 0.8
|
||||
}
|
||||
}}
|
||||
onClick={() => (window.location.href = '/')}
|
||||
>
|
||||
LeonCloud
|
||||
</Typography>
|
||||
<Button
|
||||
id="menu-appbar"
|
||||
aria-controls="menu-appbar"
|
||||
aria-haspopup="true"
|
||||
onClick={handleMenu}
|
||||
color="inherit"
|
||||
>
|
||||
<Typography variant="body1" component="span">
|
||||
项目
|
||||
</Typography>
|
||||
</Button>
|
||||
|
||||
{/* 桌面端:完整导航链接 */}
|
||||
{!isMobile && (
|
||||
<Box sx={{ display: "flex", alignItems: "center", ml: 2 }}>
|
||||
{navItems.filter(item => item.id !== 'home').map((item) => {
|
||||
if (item.type === 'link') {
|
||||
return (
|
||||
<Typography
|
||||
key={item.id}
|
||||
variant="body1"
|
||||
component="div"
|
||||
sx={{
|
||||
mr: 2,
|
||||
cursor: 'pointer',
|
||||
'&:hover': {
|
||||
opacity: 0.8
|
||||
}
|
||||
}}
|
||||
onClick={() => (window.location.href = item.href)}
|
||||
>
|
||||
{item.label}
|
||||
</Typography>
|
||||
);
|
||||
} else if (item.type === 'menu') {
|
||||
return (
|
||||
<Button
|
||||
key={item.id}
|
||||
id="menu-appbar"
|
||||
aria-controls="menu-appbar"
|
||||
aria-haspopup="true"
|
||||
onClick={handleMenu}
|
||||
color="inherit"
|
||||
>
|
||||
<Typography variant="body1" component="span">
|
||||
{item.label}
|
||||
</Typography>
|
||||
</Button>
|
||||
);
|
||||
}
|
||||
return null;
|
||||
})}
|
||||
</Box>
|
||||
)}
|
||||
</Box>
|
||||
|
||||
{/* 右侧区域留空,让左侧内容靠左 */}
|
||||
{/* <Box sx={{ flexGrow: 1 }} /> */}
|
||||
|
||||
<Menu
|
||||
id="menu-appbar"
|
||||
anchorEl={anchorEl}
|
||||
// anchorOrigin={{
|
||||
// vertical: 'top',
|
||||
// horizontal: 'left',
|
||||
// }}
|
||||
keepMounted
|
||||
// transformOrigin={{
|
||||
// vertical: 'top',
|
||||
// horizontal: 'left',
|
||||
// }}
|
||||
open={Boolean(anchorEl)}
|
||||
onClose={handleClose}
|
||||
>
|
||||
<StyledListHeader>Web</StyledListHeader>
|
||||
<MenuItem
|
||||
onClick={() => (window.location.href = "/project/leonpan")}
|
||||
{/* 桌面端:项目下拉菜单 */}
|
||||
{!isMobile && (
|
||||
<Menu
|
||||
id="menu-appbar"
|
||||
anchorEl={anchorEl}
|
||||
keepMounted
|
||||
open={Boolean(anchorEl)}
|
||||
onClose={handleClose}
|
||||
>
|
||||
LeonPan
|
||||
</MenuItem>
|
||||
<MenuItem
|
||||
onClick={() => (window.location.href = "/project/leonapp")}
|
||||
>
|
||||
LeonAPP
|
||||
</MenuItem>
|
||||
{/* <MenuItem onClick={handleClose}>My account</MenuItem> */}
|
||||
<StyledListHeader>其它</StyledListHeader>
|
||||
<MenuItem
|
||||
onClick={() => (window.location.href = "/project/leonbasic")}
|
||||
>
|
||||
LeonBasic
|
||||
</MenuItem>
|
||||
</Menu>
|
||||
<Box sx={{ display: "flex", alignItems: "center" }}>
|
||||
<Typography
|
||||
variant="body1"
|
||||
component="span"
|
||||
sx={{ mr: 2, cursor: 'pointer' }}
|
||||
onClick={() => (window.location.href = "/support")}
|
||||
>
|
||||
技术支持
|
||||
</Typography>
|
||||
<Button
|
||||
id="menu-appbar"
|
||||
aria-controls="menu-appbar"
|
||||
aria-haspopup="true"
|
||||
onClick={handleMenu}
|
||||
color="inherit"
|
||||
></Button></Box><Box sx={{ flexGrow: 1 }} />
|
||||
</Toolbar>
|
||||
</AppBar>
|
||||
{Object.entries(projectsByCategory).map(([category, items]) => (
|
||||
<React.Fragment key={category}>
|
||||
<StyledListHeader>{category}</StyledListHeader>
|
||||
{items.map((project) => (
|
||||
<MenuItem
|
||||
key={project.id}
|
||||
onClick={() => {
|
||||
window.location.href = project.href;
|
||||
handleClose();
|
||||
}}
|
||||
>
|
||||
{project.label}
|
||||
</MenuItem>
|
||||
))}
|
||||
</React.Fragment>
|
||||
))}
|
||||
</Menu>
|
||||
)}
|
||||
</Toolbar>
|
||||
</AppBar>
|
||||
</Box>
|
||||
|
||||
{/* 移动端侧边栏 */}
|
||||
<Drawer
|
||||
anchor="left"
|
||||
open={mobileDrawerOpen}
|
||||
onClose={toggleDrawer(false)}
|
||||
>
|
||||
<Box sx={{ width: 250 }} role="presentation">
|
||||
{/* 侧边栏头部 */}
|
||||
<Box sx={{
|
||||
bgcolor: 'primary.main',
|
||||
color: 'white',
|
||||
p: 2,
|
||||
display: 'flex',
|
||||
justifyContent: 'space-between',
|
||||
alignItems: 'center'
|
||||
}}>
|
||||
<Typography variant="h6">导航菜单</Typography>
|
||||
<IconButton
|
||||
edge="end"
|
||||
color="inherit"
|
||||
onClick={toggleDrawer(false)}
|
||||
aria-label="关闭菜单"
|
||||
>
|
||||
<ChevronRightIcon />
|
||||
</IconButton>
|
||||
</Box>
|
||||
|
||||
<Divider />
|
||||
|
||||
{/* 侧边栏导航链接 */}
|
||||
<List>
|
||||
{navItems.filter(item => item.id !== 'home').map((item) => {
|
||||
if (item.type === 'link') {
|
||||
return (
|
||||
<ListItem
|
||||
component="a"
|
||||
href={item.href}
|
||||
key={item.id}
|
||||
onClick={(e) => {
|
||||
e.preventDefault();
|
||||
handleDrawerItemClick(item.href);
|
||||
}}
|
||||
>
|
||||
<ListItemText primary={item.label} />
|
||||
</ListItem>
|
||||
);
|
||||
} else if (item.type === 'menu') {
|
||||
return (
|
||||
<React.Fragment key={item.id}>
|
||||
<ListItem
|
||||
component="div"
|
||||
onClick={() => setProjectsExpanded(prev => !prev)}
|
||||
sx={{
|
||||
pl: 1,
|
||||
cursor: 'pointer',
|
||||
'&:hover': { backgroundColor: 'rgba(0,0,0,0.04)' },
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
backgroundColor: 'rgba(0,0,0,0.02)',
|
||||
fontWeight: 'bold'
|
||||
}}
|
||||
>
|
||||
<ChevronRightIcon
|
||||
fontSize="small"
|
||||
sx={{
|
||||
mr: 1,
|
||||
transform: projectsExpanded ? 'rotate(90deg)' : 'none',
|
||||
transition: 'transform 0.2s ease-in-out'
|
||||
}}
|
||||
/>
|
||||
<ListItemText
|
||||
primary={item.label}
|
||||
/>
|
||||
</ListItem>
|
||||
{projectsExpanded && Object.entries(projectsByCategory).map(([category, projects]) => (
|
||||
<React.Fragment key={category}>
|
||||
<ListItem
|
||||
component="div"
|
||||
onClick={() => toggleCategory(category)}
|
||||
sx={{
|
||||
pl: 2,
|
||||
cursor: 'pointer',
|
||||
'&:hover': { backgroundColor: 'rgba(0,0,0,0.04)' },
|
||||
display: 'flex',
|
||||
alignItems: 'center'
|
||||
}}
|
||||
>
|
||||
<ChevronRightIcon
|
||||
fontSize="small"
|
||||
sx={{
|
||||
mr: 1,
|
||||
transform: expandedCategories[category] ? 'rotate(90deg)' : 'none',
|
||||
transition: 'transform 0.2s ease-in-out'
|
||||
}}
|
||||
/>
|
||||
<ListItemText
|
||||
primary={category}
|
||||
primaryTypographyProps={{ fontSize: '0.7rem' }}
|
||||
/>
|
||||
</ListItem>
|
||||
{expandedCategories[category] && projects.map((project) => (
|
||||
<ListItem
|
||||
component="a"
|
||||
href={project.href}
|
||||
key={project.id}
|
||||
onClick={(e) => {
|
||||
e.preventDefault();
|
||||
handleDrawerItemClick(project.href);
|
||||
}}
|
||||
sx={{ pl: 6 }}
|
||||
>
|
||||
<ListItemText primary={project.label} />
|
||||
</ListItem>
|
||||
))}
|
||||
</React.Fragment>
|
||||
))}
|
||||
</React.Fragment>
|
||||
);
|
||||
}
|
||||
return null;
|
||||
})}
|
||||
</List>
|
||||
</Box>
|
||||
</Drawer>
|
||||
|
||||
{children}
|
||||
|
||||
{/* 页脚区域 */}
|
||||
|
||||
412
app/joinus/page.tsx
Normal file
412
app/joinus/page.tsx
Normal file
@@ -0,0 +1,412 @@
|
||||
"use client";
|
||||
|
||||
import React from "react";
|
||||
import Container from "@mui/material/Container";
|
||||
import Typography from "@mui/material/Typography";
|
||||
import Box from "@mui/material/Box";
|
||||
import Card from "@mui/material/Card";
|
||||
import CardContent from "@mui/material/CardContent";
|
||||
import CardHeader from "@mui/material/CardHeader";
|
||||
import Button from "@mui/material/Button";
|
||||
import MailIcon from "@mui/icons-material/Mail";
|
||||
import GroupIcon from "@mui/icons-material/Group";
|
||||
import CodeIcon from "@mui/icons-material/Code";
|
||||
import MessageIcon from "@mui/icons-material/Chat";
|
||||
import CheckCircleIcon from "@mui/icons-material/CheckCircle";
|
||||
import Timeline from "@mui/lab/Timeline";
|
||||
import TimelineItem from "@mui/lab/TimelineItem";
|
||||
import TimelineSeparator from "@mui/lab/TimelineSeparator";
|
||||
import TimelineConnector from "@mui/lab/TimelineConnector";
|
||||
import TimelineContent from "@mui/lab/TimelineContent";
|
||||
import TimelineDot from "@mui/lab/TimelineDot";
|
||||
import useMediaQuery from "@mui/material/useMediaQuery";
|
||||
import { useTheme } from "@mui/material/styles";
|
||||
import ClientLayout from "../components/ClientLayout";
|
||||
|
||||
const Joinus: React.FC = () => {
|
||||
const theme = useTheme();
|
||||
const isMobile = useMediaQuery(theme.breakpoints.down('sm'));
|
||||
const isMedium = useMediaQuery(theme.breakpoints.down('md'));
|
||||
|
||||
const handleEmailClick = () => {
|
||||
window.location.href = 'mailto:leonmmcoset@outlook.com';
|
||||
};
|
||||
|
||||
// 要求列表数据
|
||||
const requirements = [
|
||||
{ text: "能会至少一种编程语言的开发人员", icon: <CodeIcon /> },
|
||||
{ text: "有良好的沟通能力和团队合作精神", icon: <MessageIcon /> },
|
||||
{ text: "无违法前科", icon: <CheckCircleIcon /> },
|
||||
{ text: "拥有微信或QQ账号", icon: <GroupIcon /> }
|
||||
];
|
||||
|
||||
// 加入步骤数据
|
||||
const steps = [
|
||||
{
|
||||
title: "发送申请",
|
||||
description: "通过我们的邮箱发送你的申请意愿",
|
||||
icon: <MailIcon />
|
||||
},
|
||||
{
|
||||
title: "等待回复",
|
||||
description: "我们会在三天内回复你的申请",
|
||||
icon: <MessageIcon />
|
||||
},
|
||||
{
|
||||
title: "加入群聊",
|
||||
description: "获得微信/QQ内部群聊的邀请",
|
||||
icon: <GroupIcon />
|
||||
},
|
||||
{
|
||||
title: "讨论技术",
|
||||
description: "在群聊中讨论你的技术方向和项目",
|
||||
icon: <CodeIcon />
|
||||
}
|
||||
];
|
||||
|
||||
// 动画延迟函数
|
||||
const getDelay = (index: number) => {
|
||||
return `${index * 0.2}s`;
|
||||
};
|
||||
|
||||
return (
|
||||
<Container maxWidth="lg" sx={{ py: { xs: 8, md: 12 } }}>
|
||||
{/* 页面标题 */}
|
||||
<Box
|
||||
sx={{
|
||||
textAlign: 'center',
|
||||
mb: { xs: 8, md: 12 },
|
||||
animation: 'fadeInUp 0.8s ease-out',
|
||||
'@keyframes fadeInUp': {
|
||||
'from': {
|
||||
opacity: 0,
|
||||
transform: 'translateY(30px)'
|
||||
},
|
||||
'to': {
|
||||
opacity: 1,
|
||||
transform: 'translateY(0)'
|
||||
}
|
||||
}
|
||||
}}
|
||||
>
|
||||
<Typography
|
||||
variant={isMobile ? "h3" : "h2"}
|
||||
component="h1"
|
||||
gutterBottom
|
||||
fontWeight="bold"
|
||||
sx={{ color: 'primary.main' }}
|
||||
>
|
||||
加入我们
|
||||
</Typography>
|
||||
<Typography
|
||||
variant="body1"
|
||||
sx={{
|
||||
maxWidth: 700,
|
||||
mx: 'auto',
|
||||
fontSize: { xs: '1rem', md: '1.125rem' },
|
||||
lineHeight: 1.6
|
||||
}}
|
||||
>
|
||||
我们是一个致力于推动技术创新的团队,致力于为客户提供高质量的服务。
|
||||
加入我们,让我们的技术更上一层楼!
|
||||
</Typography>
|
||||
</Box>
|
||||
|
||||
{/* 要求部分 */}
|
||||
<Box
|
||||
sx={{
|
||||
mb: { xs: 10, md: 16 },
|
||||
animation: 'fadeInUp 0.8s ease-out 0.2s both',
|
||||
}}
|
||||
>
|
||||
<Typography
|
||||
variant="h4"
|
||||
component="h2"
|
||||
gutterBottom
|
||||
sx={{
|
||||
textAlign: 'center',
|
||||
mb: { xs: 6, md: 8 },
|
||||
position: 'relative',
|
||||
'&::after': {
|
||||
content: '""',
|
||||
position: 'absolute',
|
||||
bottom: -16,
|
||||
left: '50%',
|
||||
transform: 'translateX(-50%)',
|
||||
width: 50,
|
||||
height: 3,
|
||||
backgroundColor: 'primary.main'
|
||||
}
|
||||
}}
|
||||
>
|
||||
我们需要
|
||||
</Typography>
|
||||
|
||||
<Box
|
||||
sx={{
|
||||
display: 'grid',
|
||||
gridTemplateColumns: {
|
||||
xs: '1fr',
|
||||
sm: '1fr 1fr',
|
||||
md: '1fr 1fr 1fr 1fr'
|
||||
},
|
||||
gap: { xs: 4, md: 6 }
|
||||
}}
|
||||
>
|
||||
{requirements.map((requirement, index) => (
|
||||
<Card
|
||||
key={index}
|
||||
sx={{
|
||||
height: '100%',
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
transition: 'all 0.3s ease',
|
||||
'&:hover': {
|
||||
transform: 'translateY(-8px)',
|
||||
boxShadow: '0 12px 20px rgba(0,0,0,0.1)',
|
||||
},
|
||||
animation: 'fadeInUp 0.6s ease-out both',
|
||||
animationDelay: getDelay(index)
|
||||
}}
|
||||
elevation={2}
|
||||
>
|
||||
<CardHeader
|
||||
avatar={
|
||||
<Box sx={{
|
||||
bgcolor: 'primary.light',
|
||||
width: 50,
|
||||
height: 50,
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
borderRadius: '50%',
|
||||
color: 'primary.dark'
|
||||
}}>
|
||||
{requirement.icon}
|
||||
</Box>
|
||||
}
|
||||
title={
|
||||
<Typography
|
||||
variant="h6"
|
||||
component="div"
|
||||
sx={{ fontWeight: 600 }}
|
||||
>
|
||||
{requirement.text}
|
||||
</Typography>
|
||||
}
|
||||
/>
|
||||
</Card>
|
||||
))}
|
||||
</Box>
|
||||
|
||||
<Box
|
||||
sx={{
|
||||
mt: 8,
|
||||
textAlign: 'center',
|
||||
animation: 'fadeInUp 0.8s ease-out 0.8s both',
|
||||
}}
|
||||
>
|
||||
<Typography
|
||||
variant="h6"
|
||||
component="p"
|
||||
sx={{
|
||||
fontWeight: 600,
|
||||
color: 'white',
|
||||
backgroundColor: 'primary.light',
|
||||
py: 2,
|
||||
px: 4,
|
||||
display: 'inline-block',
|
||||
borderRadius: 2
|
||||
}}
|
||||
>
|
||||
你只要满足以上条件,就可以加入我们的团队!
|
||||
</Typography>
|
||||
</Box>
|
||||
</Box>
|
||||
|
||||
{/* 加入步骤 - 使用Timeline组件 */}
|
||||
<Box
|
||||
sx={{
|
||||
mb: { xs: 10, md: 16 },
|
||||
animation: 'fadeInUp 0.8s ease-out 0.4s both',
|
||||
}}
|
||||
>
|
||||
<Typography
|
||||
variant="h4"
|
||||
component="h2"
|
||||
gutterBottom
|
||||
sx={{
|
||||
textAlign: 'center',
|
||||
mb: { xs: 8, md: 10 },
|
||||
position: 'relative',
|
||||
'&::after': {
|
||||
content: '""',
|
||||
position: 'absolute',
|
||||
bottom: -16,
|
||||
left: '50%',
|
||||
transform: 'translateX(-50%)',
|
||||
width: 50,
|
||||
height: 3,
|
||||
backgroundColor: 'primary.main'
|
||||
}
|
||||
}}
|
||||
>
|
||||
加入我们的步骤
|
||||
</Typography>
|
||||
|
||||
<Box sx={{ px: { xs: 1, md: 4 } }}>
|
||||
<Timeline position={isMobile ? "alternate" : "left"}>
|
||||
{steps.map((step, index) => (
|
||||
<TimelineItem key={index} sx={{ animation: 'fadeInUp 0.6s ease-out both', animationDelay: getDelay(index) }}>
|
||||
<TimelineSeparator>
|
||||
<TimelineDot
|
||||
sx={{
|
||||
bgcolor: 'primary.main',
|
||||
color: 'white',
|
||||
width: isMobile ? 48 : 56,
|
||||
height: isMobile ? 48 : 56,
|
||||
display: 'flex',
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
'& .MuiSvgIcon-root': {
|
||||
fontSize: isMobile ? 24 : 28
|
||||
}
|
||||
}}
|
||||
>
|
||||
{step.icon}
|
||||
</TimelineDot>
|
||||
{index < steps.length - 1 && <TimelineConnector sx={{ bgcolor: 'primary.light' }} />}
|
||||
</TimelineSeparator>
|
||||
<TimelineContent>
|
||||
<Card
|
||||
sx={{
|
||||
maxWidth: isMobile ? '100%' : 600,
|
||||
ml: isMobile ? 0 : 2,
|
||||
transition: 'all 0.3s ease',
|
||||
'&:hover': {
|
||||
boxShadow: '0 8px 16px rgba(0,0,0,0.1)'
|
||||
}
|
||||
}}
|
||||
elevation={3}
|
||||
>
|
||||
<CardContent sx={{ p: { xs: 3, md: 4 } }}>
|
||||
<Typography
|
||||
variant="h5"
|
||||
component="h3"
|
||||
gutterBottom
|
||||
fontWeight="bold"
|
||||
>
|
||||
步骤 {index + 1}:{step.title}
|
||||
</Typography>
|
||||
<Typography
|
||||
variant="body1"
|
||||
sx={{
|
||||
fontSize: { xs: '1rem', md: '1.0625rem' },
|
||||
lineHeight: 1.7
|
||||
}}
|
||||
>
|
||||
{step.description}
|
||||
</Typography>
|
||||
{index === 0 && (
|
||||
<Button
|
||||
variant="contained"
|
||||
color="primary"
|
||||
sx={{ mt: 3 }}
|
||||
startIcon={<MailIcon />}
|
||||
onClick={handleEmailClick}
|
||||
>
|
||||
立即发送申请
|
||||
</Button>
|
||||
)}
|
||||
</CardContent>
|
||||
</Card>
|
||||
</TimelineContent>
|
||||
</TimelineItem>
|
||||
))}
|
||||
</Timeline>
|
||||
</Box>
|
||||
</Box>
|
||||
|
||||
{/* CTA 区域 */}
|
||||
<Box
|
||||
sx={{
|
||||
textAlign: 'center',
|
||||
py: { xs: 8, md: 12 },
|
||||
bgcolor: 'primary.light',
|
||||
borderRadius: 4,
|
||||
position: 'relative',
|
||||
overflow: 'hidden',
|
||||
animation: 'fadeInUp 0.8s ease-out 0.6s both',
|
||||
'&::before': {
|
||||
content: '""',
|
||||
position: 'absolute',
|
||||
top: 0,
|
||||
left: 0,
|
||||
right: 0,
|
||||
bottom: 0,
|
||||
bgcolor: 'primary.light',
|
||||
opacity: 0.2,
|
||||
zIndex: 0
|
||||
}
|
||||
}}
|
||||
>
|
||||
<Box sx={{ position: 'relative', zIndex: 1 }}>
|
||||
<Typography
|
||||
variant="h4"
|
||||
component="h2"
|
||||
gutterBottom
|
||||
fontWeight="bold"
|
||||
sx={{ color: 'white' }}
|
||||
>
|
||||
准备好加入我们了吗?
|
||||
</Typography>
|
||||
<Typography
|
||||
variant="body1"
|
||||
sx={{
|
||||
maxWidth: 600,
|
||||
mx: 'auto',
|
||||
mb: 4,
|
||||
fontSize: { xs: '1rem', md: '1.125rem' },
|
||||
color: 'white'
|
||||
}}
|
||||
>
|
||||
不要犹豫,立即发送邮件申请加入我们的团队!
|
||||
</Typography>
|
||||
<Button
|
||||
variant="contained"
|
||||
color="primary"
|
||||
size={isMobile ? "large" : "medium"}
|
||||
sx={{
|
||||
px: { xs: 4, md: 5 },
|
||||
py: { xs: 1.5, md: 1 },
|
||||
fontWeight: 600,
|
||||
'&:hover': {
|
||||
transform: 'translateY(-2px)'
|
||||
}
|
||||
}}
|
||||
startIcon={<MailIcon />}
|
||||
onClick={handleEmailClick}
|
||||
>
|
||||
立即联系
|
||||
</Button>
|
||||
</Box>
|
||||
</Box>
|
||||
|
||||
{/* 动画样式 */}
|
||||
<style jsx global>{`
|
||||
@keyframes fadeInUp {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
`}</style>
|
||||
</Container>
|
||||
);
|
||||
};
|
||||
|
||||
export default Joinus;
|
||||
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
3:I[31713,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/8e7deecdb523f981.js"],"default"]
|
||||
3:I[31713,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/091ce9bf87c67fba.js"],"default"]
|
||||
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/8e7deecdb523f981.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/091ce9bf87c67fba.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
7:I[31713,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/8e7deecdb523f981.js"],"default"]
|
||||
7:I[31713,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/091ce9bf87c67fba.js"],"default"]
|
||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
b:"$Sreact.suspense"
|
||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
11:I[68027,[],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"r7P_3whGbvZmrfgU0P2dv","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/8e7deecdb523f981.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/091ce9bf87c67fba.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
8:{}
|
||||
9:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
4:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
5:"$Sreact.suspense"
|
||||
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],null]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],null]}],"loading":null,"isPartial":false}
|
||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
6:[["$","title","0",{"children":"LeonCloud官网"}],["$","meta","1",{"name":"description","content":"LeonCloud(原LeonWeb)官网"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L7","3",{}]]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[["$","$L5",null,{}],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[["$","$L5",null,{}],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","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":"5KljEUHySwQLfx-PsEhey","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}
|
||||
|
||||
1
out/_next/static/chunks/091ce9bf87c67fba.js
Normal file
1
out/_next/static/chunks/091ce9bf87c67fba.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
1
out/_next/static/chunks/25f8e6766d30bc93.js
Normal file
1
out/_next/static/chunks/25f8e6766d30bc93.js
Normal file
File diff suppressed because one or more lines are too long
1
out/_next/static/chunks/4424b7652b058e9a.js
Normal file
1
out/_next/static/chunks/4424b7652b058e9a.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
34
out/_next/static/chunks/625d5e982068df2e.js
Normal file
34
out/_next/static/chunks/625d5e982068df2e.js
Normal file
File diff suppressed because one or more lines are too long
1
out/_next/static/chunks/68358b996ed03953.js
Normal file
1
out/_next/static/chunks/68358b996ed03953.js
Normal file
File diff suppressed because one or more lines are too long
1
out/_next/static/chunks/701873fd9efc9d3c.js
Normal file
1
out/_next/static/chunks/701873fd9efc9d3c.js
Normal file
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
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
4
out/_next/static/chunks/c3a35c486db3a8d3.js
Normal file
4
out/_next/static/chunks/c3a35c486db3a8d3.js
Normal file
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
out/_next/static/chunks/f2da50cbbcf0578a.js
Normal file
1
out/_next/static/chunks/f2da50cbbcf0578a.js
Normal file
File diff suppressed because one or more lines are too long
1
out/_next/static/chunks/fa6a73214e20c9c8.js
Normal file
1
out/_next/static/chunks/fa6a73214e20c9c8.js
Normal file
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"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
9:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
@@ -10,7 +10,7 @@ c:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247e
|
||||
e:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
10:I[68027,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"r7P_3whGbvZmrfgU0P2dv","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$5","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7273b82becfc1543.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$Lc",null,{"children":"$@d"}],["$","div",null,{"hidden":true,"children":["$","$Le",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$@f"}]}]}],null]}],false]],"m":"$undefined","G":["$10","$undefined"],"S":true}
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$5","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/f2da50cbbcf0578a.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$Lc",null,{"children":"$@d"}],["$","div",null,{"hidden":true,"children":["$","$Le",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$@f"}]}]}],null]}],false]],"m":"$undefined","G":["$10","$undefined"],"S":true}
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
9:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
a:"$Sreact.suspense"
|
||||
@@ -10,7 +10,7 @@ c:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247e
|
||||
e:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
10:I[68027,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"r7P_3whGbvZmrfgU0P2dv","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$5","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7273b82becfc1543.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$Lc",null,{"children":"$@d"}],["$","div",null,{"hidden":true,"children":["$","$Le",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$@f"}]}]}],null]}],false]],"m":"$undefined","G":["$10","$undefined"],"S":true}
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["","_not-found"],"q":"","i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$5","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@7","$@8"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/f2da50cbbcf0578a.js","async":true,"nonce":"$undefined"}]],["$","$L9",null,{"children":["$","$a",null,{"name":"Next.MetadataOutlet","children":"$@b"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$Lc",null,{"children":"$@d"}],["$","div",null,{"hidden":true,"children":["$","$Le",null,{"children":["$","$a",null,{"name":"Next.Metadata","children":"$@f"}]}]}],null]}],false]],"m":"$undefined","G":["$10","$undefined"],"S":true}
|
||||
7:{}
|
||||
8:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
4:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
5:"$Sreact.suspense"
|
||||
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","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"}]}]}],null]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","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"}]}]}],null]}],"loading":null,"isPartial":false}
|
||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
6:[["$","title","0",{"children":"LeonCloud官网"}],["$","meta","1",{"name":"description","content":"LeonCloud(原LeonWeb)官网"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L7","3",{}]]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[["$","$L5",null,{}],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[["$","$L5",null,{}],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
3:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
3:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/7273b82becfc1543.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/f2da50cbbcf0578a.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","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":"5KljEUHySwQLfx-PsEhey","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
@@ -1,17 +1,17 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
7:I[31713,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/8e7deecdb523f981.js"],"default"]
|
||||
7:I[31713,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/091ce9bf87c67fba.js"],"default"]
|
||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
b:"$Sreact.suspense"
|
||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
11:I[68027,[],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"r7P_3whGbvZmrfgU0P2dv","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/8e7deecdb523f981.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/091ce9bf87c67fba.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
8:{}
|
||||
9:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
|
||||
1
out/joinus.html
Normal file
1
out/joinus.html
Normal file
File diff suppressed because one or more lines are too long
20
out/joinus.txt
Normal file
20
out/joinus.txt
Normal file
@@ -0,0 +1,20 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
7:I[92326,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/25f8e6766d30bc93.js"],"default"]
|
||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
b:"$Sreact.suspense"
|
||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
11:I[68027,[],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["","joinus"],"q":"","i":false,"f":[[["",{"children":["joinus",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/25f8e6766d30bc93.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
8:{}
|
||||
9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
12:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||
10:[["$","title","0",{"children":"LeonCloud官网"}],["$","meta","1",{"name":"description","content":"LeonCloud(原LeonWeb)官网"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L12","3",{}]]
|
||||
c:null
|
||||
20
out/joinus/__next._full.txt
Normal file
20
out/joinus/__next._full.txt
Normal file
@@ -0,0 +1,20 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
7:I[92326,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/25f8e6766d30bc93.js"],"default"]
|
||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
b:"$Sreact.suspense"
|
||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
11:I[68027,[],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["","joinus"],"q":"","i":false,"f":[[["",{"children":["joinus",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/25f8e6766d30bc93.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
8:{}
|
||||
9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
12:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||
10:[["$","title","0",{"children":"LeonCloud官网"}],["$","meta","1",{"name":"description","content":"LeonCloud(原LeonWeb)官网"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L12","3",{}]]
|
||||
c:null
|
||||
8
out/joinus/__next._head.txt
Normal file
8
out/joinus/__next._head.txt
Normal file
@@ -0,0 +1,8 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||
4:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
5:"$Sreact.suspense"
|
||||
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],null]}],"loading":null,"isPartial":false}
|
||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
6:[["$","title","0",{"children":"LeonCloud官网"}],["$","meta","1",{"name":"description","content":"LeonCloud(原LeonWeb)官网"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L7","3",{}]]
|
||||
7
out/joinus/__next._index.txt
Normal file
7
out/joinus/__next._index.txt
Normal file
@@ -0,0 +1,7 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[["$","$L5",null,{}],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
||||
2
out/joinus/__next._tree.txt
Normal file
2
out/joinus/__next._tree.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"joinus","paramType":null,"paramKey":"joinus","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||
4
out/joinus/__next.joinus.txt
Normal file
4
out/joinus/__next.joinus.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
9
out/joinus/__next.joinus/__PAGE__.txt
Normal file
9
out/joinus/__next.joinus/__PAGE__.txt
Normal file
@@ -0,0 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
3:I[92326,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/25f8e6766d30bc93.js"],"default"]
|
||||
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/25f8e6766d30bc93.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
File diff suppressed because one or more lines are too long
@@ -1,17 +1,17 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
7:I[76603,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/860127cfce37f794.js"],"default"]
|
||||
7:I[76603,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/68358b996ed03953.js"],"default"]
|
||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
b:"$Sreact.suspense"
|
||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
11:I[68027,[],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"r7P_3whGbvZmrfgU0P2dv","c":["","project","leonapp"],"q":"","i":false,"f":[[["",{"children":["project",{"children":["leonapp",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/860127cfce37f794.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["","project","leonapp"],"q":"","i":false,"f":[[["",{"children":["project",{"children":["leonapp",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/68358b996ed03953.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
8:{}
|
||||
9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
7:I[76603,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/860127cfce37f794.js"],"default"]
|
||||
7:I[76603,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/68358b996ed03953.js"],"default"]
|
||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
b:"$Sreact.suspense"
|
||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
11:I[68027,[],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"r7P_3whGbvZmrfgU0P2dv","c":["","project","leonapp"],"q":"","i":false,"f":[[["",{"children":["project",{"children":["leonapp",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/860127cfce37f794.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["","project","leonapp"],"q":"","i":false,"f":[[["",{"children":["project",{"children":["leonapp",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/68358b996ed03953.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
8:{}
|
||||
9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
4:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
5:"$Sreact.suspense"
|
||||
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],null]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],null]}],"loading":null,"isPartial":false}
|
||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
6:[["$","title","0",{"children":"LeonCloud官网"}],["$","meta","1",{"name":"description","content":"LeonCloud(原LeonWeb)官网"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L7","3",{}]]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[["$","$L5",null,{}],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[["$","$L5",null,{}],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"project","paramType":null,"paramKey":"project","hasRuntimePrefetch":false,"slots":{"children":{"name":"leonapp","paramType":null,"paramKey":"leonapp","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":"5KljEUHySwQLfx-PsEhey","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"project","paramType":null,"paramKey":"project","hasRuntimePrefetch":false,"slots":{"children":{"name":"leonapp","paramType":null,"paramKey":"leonapp","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"
|
||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
3:I[76603,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/860127cfce37f794.js"],"default"]
|
||||
3:I[76603,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/68358b996ed03953.js"],"default"]
|
||||
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/860127cfce37f794.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/68358b996ed03953.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,17 +1,17 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
7:I[39294,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/c0afb4c7ee0eb89a.js"],"default"]
|
||||
7:I[39294,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/c3a35c486db3a8d3.js"],"default"]
|
||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
b:"$Sreact.suspense"
|
||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
11:I[68027,[],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"r7P_3whGbvZmrfgU0P2dv","c":["","project","leonbasic"],"q":"","i":false,"f":[[["",{"children":["project",{"children":["leonbasic",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/c0afb4c7ee0eb89a.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["","project","leonbasic"],"q":"","i":false,"f":[[["",{"children":["project",{"children":["leonbasic",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/c3a35c486db3a8d3.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
8:{}
|
||||
9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
7:I[39294,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/c0afb4c7ee0eb89a.js"],"default"]
|
||||
7:I[39294,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/c3a35c486db3a8d3.js"],"default"]
|
||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
b:"$Sreact.suspense"
|
||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
11:I[68027,[],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"r7P_3whGbvZmrfgU0P2dv","c":["","project","leonbasic"],"q":"","i":false,"f":[[["",{"children":["project",{"children":["leonbasic",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/c0afb4c7ee0eb89a.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["","project","leonbasic"],"q":"","i":false,"f":[[["",{"children":["project",{"children":["leonbasic",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/c3a35c486db3a8d3.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
8:{}
|
||||
9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
4:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
5:"$Sreact.suspense"
|
||||
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],null]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],null]}],"loading":null,"isPartial":false}
|
||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
6:[["$","title","0",{"children":"LeonCloud官网"}],["$","meta","1",{"name":"description","content":"LeonCloud(原LeonWeb)官网"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L7","3",{}]]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[["$","$L5",null,{}],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[["$","$L5",null,{}],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"project","paramType":null,"paramKey":"project","hasRuntimePrefetch":false,"slots":{"children":{"name":"leonbasic","paramType":null,"paramKey":"leonbasic","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":"5KljEUHySwQLfx-PsEhey","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"project","paramType":null,"paramKey":"project","hasRuntimePrefetch":false,"slots":{"children":{"name":"leonbasic","paramType":null,"paramKey":"leonbasic","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"
|
||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
3:I[39294,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/c0afb4c7ee0eb89a.js"],"default"]
|
||||
3:I[39294,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/c3a35c486db3a8d3.js"],"default"]
|
||||
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/c0afb4c7ee0eb89a.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/c3a35c486db3a8d3.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,17 +1,17 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
7:I[25139,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/8180cc03a1e3de86.js"],"default"]
|
||||
7:I[25139,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/4424b7652b058e9a.js"],"default"]
|
||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
b:"$Sreact.suspense"
|
||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
11:I[68027,[],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"r7P_3whGbvZmrfgU0P2dv","c":["","project","leonpan"],"q":"","i":false,"f":[[["",{"children":["project",{"children":["leonpan",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/8180cc03a1e3de86.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["","project","leonpan"],"q":"","i":false,"f":[[["",{"children":["project",{"children":["leonpan",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/4424b7652b058e9a.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
8:{}
|
||||
9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
7:I[25139,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/8180cc03a1e3de86.js"],"default"]
|
||||
7:I[25139,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/4424b7652b058e9a.js"],"default"]
|
||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
b:"$Sreact.suspense"
|
||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
11:I[68027,[],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"r7P_3whGbvZmrfgU0P2dv","c":["","project","leonpan"],"q":"","i":false,"f":[[["",{"children":["project",{"children":["leonpan",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/8180cc03a1e3de86.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["","project","leonpan"],"q":"","i":false,"f":[[["",{"children":["project",{"children":["leonpan",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/4424b7652b058e9a.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
8:{}
|
||||
9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
4:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
5:"$Sreact.suspense"
|
||||
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],null]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],null]}],"loading":null,"isPartial":false}
|
||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
6:[["$","title","0",{"children":"LeonCloud官网"}],["$","meta","1",{"name":"description","content":"LeonCloud(原LeonWeb)官网"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L7","3",{}]]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[["$","$L5",null,{}],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[["$","$L5",null,{}],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"project","paramType":null,"paramKey":"project","hasRuntimePrefetch":false,"slots":{"children":{"name":"leonpan","paramType":null,"paramKey":"leonpan","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":"5KljEUHySwQLfx-PsEhey","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"project","paramType":null,"paramKey":"project","hasRuntimePrefetch":false,"slots":{"children":{"name":"leonpan","paramType":null,"paramKey":"leonpan","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"
|
||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
3:I[25139,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/8180cc03a1e3de86.js"],"default"]
|
||||
3:I[25139,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/4424b7652b058e9a.js"],"default"]
|
||||
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/8180cc03a1e3de86.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/4424b7652b058e9a.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,17 +1,17 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
7:I[64829,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/f25df963adaf8759.js"],"default"]
|
||||
7:I[64829,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/701873fd9efc9d3c.js"],"default"]
|
||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
b:"$Sreact.suspense"
|
||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
11:I[68027,[],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"r7P_3whGbvZmrfgU0P2dv","c":["","support"],"q":"","i":false,"f":[[["",{"children":["support",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/f25df963adaf8759.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["","support"],"q":"","i":false,"f":[[["",{"children":["support",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/701873fd9efc9d3c.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
8:{}
|
||||
9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
7:I[64829,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/f25df963adaf8759.js"],"default"]
|
||||
7:I[64829,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/701873fd9efc9d3c.js"],"default"]
|
||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
b:"$Sreact.suspense"
|
||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
11:I[68027,[],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"P":null,"b":"r7P_3whGbvZmrfgU0P2dv","c":["","support"],"q":"","i":false,"f":[[["",{"children":["support",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/f25df963adaf8759.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
0:{"P":null,"b":"5KljEUHySwQLfx-PsEhey","c":["","support"],"q":"","i":false,"f":[[["",{"children":["support",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","$L5",null,{}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L3",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/701873fd9efc9d3c.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$@e"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$@10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
|
||||
8:{}
|
||||
9:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
||||
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
4:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||
5:"$Sreact.suspense"
|
||||
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],null]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":"$@3"}],["$","div",null,{"hidden":true,"children":["$","$L4",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$@6"}]}]}],null]}],"loading":null,"isPartial":false}
|
||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||
6:[["$","title","0",{"children":"LeonCloud官网"}],["$","meta","1",{"name":"description","content":"LeonCloud(原LeonWeb)官网"}],["$","link","2",{"rel":"icon","href":"/favicon.ico?favicon.0b3bf435.ico","sizes":"256x256","type":"image/x-icon"}],["$","$L7","3",{}]]
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||
2:I[54871,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js"],"default"]
|
||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||
5:I[36768,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/f2da50cbbcf0578a.js"],"default"]
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/245fb736b92bf729.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/2241c83427f1dec8.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/ee98e82c6307295e.js","async":true}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[["$","$L5",null,{}],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/ec6493923eff5ab8.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/fa6a73214e20c9c8.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/5093d12438e2e28f.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/625d5e982068df2e.js","async":true}]],["$","html",null,{"children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","template":["$","$L4",null,{}],"notFound":[["$","$L5",null,{}],[]]}]}]}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"support","paramType":null,"paramKey":"support","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"support","paramType":null,"paramKey":"support","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"
|
||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
1:"$Sreact.fragment"
|
||||
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||
3:I[64829,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/f25df963adaf8759.js"],"default"]
|
||||
3:I[64829,["/_next/static/chunks/fa6a73214e20c9c8.js","/_next/static/chunks/5093d12438e2e28f.js","/_next/static/chunks/625d5e982068df2e.js","/_next/static/chunks/701873fd9efc9d3c.js"],"default"]
|
||||
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||
7:"$Sreact.suspense"
|
||||
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/f25df963adaf8759.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
0:{"buildId":"5KljEUHySwQLfx-PsEhey","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/701873fd9efc9d3c.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
||||
4:{}
|
||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||
8:null
|
||||
|
||||
98
package-lock.json
generated
98
package-lock.json
generated
@@ -12,6 +12,7 @@
|
||||
"@emotion/styled": "^11.14.1",
|
||||
"@mui/base": "^5.0.0-beta.70",
|
||||
"@mui/icons-material": "^7.3.5",
|
||||
"@mui/lab": "^7.0.1-beta.19",
|
||||
"@mui/material": "^7.3.5",
|
||||
"next": "16.0.3",
|
||||
"react": "19.2.0",
|
||||
@@ -1280,6 +1281,103 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/@mui/lab": {
|
||||
"version": "7.0.1-beta.19",
|
||||
"resolved": "https://registry.npmjs.org/@mui/lab/-/lab-7.0.1-beta.19.tgz",
|
||||
"integrity": "sha512-Ekxd2mPnr5iKwrMXjN/y2xgpxPX8ithBBcDenjqNdBt/ZQumrmBl0ifVoqAHsL6lxN6DOgRsWTRc4eOdDiB+0Q==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.28.4",
|
||||
"@mui/system": "^7.3.5",
|
||||
"@mui/types": "^7.4.8",
|
||||
"@mui/utils": "^7.3.5",
|
||||
"clsx": "^2.1.1",
|
||||
"prop-types": "^15.8.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/mui-org"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@emotion/react": "^11.5.0",
|
||||
"@emotion/styled": "^11.3.0",
|
||||
"@mui/material": "^7.3.5",
|
||||
"@mui/material-pigment-css": "^7.3.5",
|
||||
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@emotion/react": {
|
||||
"optional": true
|
||||
},
|
||||
"@emotion/styled": {
|
||||
"optional": true
|
||||
},
|
||||
"@mui/material-pigment-css": {
|
||||
"optional": true
|
||||
},
|
||||
"@types/react": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/@mui/lab/node_modules/@mui/types": {
|
||||
"version": "7.4.8",
|
||||
"resolved": "https://registry.npmjs.org/@mui/types/-/types-7.4.8.tgz",
|
||||
"integrity": "sha512-ZNXLBjkPV6ftLCmmRCafak3XmSn8YV0tKE/ZOhzKys7TZXUiE0mZxlH8zKDo6j6TTUaDnuij68gIG+0Ucm7Xhw==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.28.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@types/react": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/@mui/lab/node_modules/@mui/utils": {
|
||||
"version": "7.3.5",
|
||||
"resolved": "https://registry.npmjs.org/@mui/utils/-/utils-7.3.5.tgz",
|
||||
"integrity": "sha512-jisvFsEC3sgjUjcPnR4mYfhzjCDIudttSGSbe1o/IXFNu0kZuR+7vqQI0jg8qtcVZBHWrwTfvAZj9MNMumcq1g==",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.28.4",
|
||||
"@mui/types": "^7.4.8",
|
||||
"@types/prop-types": "^15.7.15",
|
||||
"clsx": "^2.1.1",
|
||||
"prop-types": "^15.8.1",
|
||||
"react-is": "^19.2.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.0.0"
|
||||
},
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/mui-org"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
||||
"react": "^17.0.0 || ^18.0.0 || ^19.0.0"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@types/react": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/@mui/lab/node_modules/react-is": {
|
||||
"version": "19.2.0",
|
||||
"resolved": "https://registry.npmjs.org/react-is/-/react-is-19.2.0.tgz",
|
||||
"integrity": "sha512-x3Ax3kNSMIIkyVYhWPyO09bu0uttcAIoecO/um/rKGQ4EltYWVYtyiGkS/3xMynrbVQdS69Jhlv8FXUEZehlzA==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/@mui/material": {
|
||||
"version": "7.3.5",
|
||||
"resolved": "https://registry.npmjs.org/@mui/material/-/material-7.3.5.tgz",
|
||||
|
||||
@@ -13,6 +13,7 @@
|
||||
"@emotion/styled": "^11.14.1",
|
||||
"@mui/base": "^5.0.0-beta.70",
|
||||
"@mui/icons-material": "^7.3.5",
|
||||
"@mui/lab": "^7.0.1-beta.19",
|
||||
"@mui/material": "^7.3.5",
|
||||
"next": "16.0.3",
|
||||
"react": "19.2.0",
|
||||
|
||||
Reference in New Issue
Block a user