awa
This commit is contained in:
@@ -121,7 +121,7 @@ const ClientLayout: React.FC<ClientLayoutProps> = ({ children }) => {
|
|||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
{/* 右侧区域留空,让左侧内容靠左 */}
|
{/* 右侧区域留空,让左侧内容靠左 */}
|
||||||
<Box sx={{ flexGrow: 1 }} />
|
{/* <Box sx={{ flexGrow: 1 }} /> */}
|
||||||
|
|
||||||
<Menu
|
<Menu
|
||||||
id="menu-appbar"
|
id="menu-appbar"
|
||||||
@@ -157,6 +157,22 @@ const ClientLayout: React.FC<ClientLayoutProps> = ({ children }) => {
|
|||||||
LeonBasic
|
LeonBasic
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
</Menu>
|
</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>
|
</Toolbar>
|
||||||
</AppBar>
|
</AppBar>
|
||||||
</Box>
|
</Box>
|
||||||
|
|||||||
396
app/support/page.tsx
Normal file
396
app/support/page.tsx
Normal file
@@ -0,0 +1,396 @@
|
|||||||
|
"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 SupportIcon from "@mui/icons-material/SupportAgent";
|
||||||
|
import CodeIcon from "@mui/icons-material/Code";
|
||||||
|
import WorkIcon from "@mui/icons-material/Work";
|
||||||
|
import useMediaQuery from "@mui/material/useMediaQuery";
|
||||||
|
import { useTheme } from "@mui/material/styles";
|
||||||
|
import ClientLayout from "../components/ClientLayout";
|
||||||
|
|
||||||
|
export default function SupportPage() {
|
||||||
|
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';
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<Container maxWidth="lg" sx={{ py: { xs: 8, md: 12 } }}>
|
||||||
|
{/* 页面标题 */}
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
textAlign: 'center',
|
||||||
|
mb: { xs: 8, md: 12 },
|
||||||
|
opacity: 0,
|
||||||
|
transform: 'translateY(20px)',
|
||||||
|
animation: 'fadeInUp 0.8s ease-out forwards'
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Typography
|
||||||
|
variant={isMobile ? 'h3' : 'h2'}
|
||||||
|
component="h1"
|
||||||
|
gutterBottom
|
||||||
|
sx={{
|
||||||
|
fontWeight: 700,
|
||||||
|
color: theme.palette.primary.main,
|
||||||
|
mb: 2
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
技术支持服务
|
||||||
|
</Typography>
|
||||||
|
<Typography
|
||||||
|
variant="body1"
|
||||||
|
sx={{
|
||||||
|
maxWidth: '700px',
|
||||||
|
margin: '0 auto',
|
||||||
|
color: 'text.secondary',
|
||||||
|
fontSize: { xs: '1rem', md: '1.1rem' },
|
||||||
|
lineHeight: 1.6
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
如果您在使用开源项目时遇到问题,或者需要外包项目开发,我们随时为您提供专业的技术支持
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
{/* 服务介绍卡片 */}
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
display: 'grid',
|
||||||
|
gridTemplateColumns: isMobile
|
||||||
|
? '1fr'
|
||||||
|
: isMedium
|
||||||
|
? 'repeat(2, 1fr)'
|
||||||
|
: 'repeat(3, 1fr)',
|
||||||
|
gap: { xs: 4, md: 6 },
|
||||||
|
mb: { xs: 12, md: 16 },
|
||||||
|
'& > *': {
|
||||||
|
opacity: 0,
|
||||||
|
transform: 'translateY(30px)',
|
||||||
|
animation: 'fadeInUp 0.6s ease-out forwards'
|
||||||
|
},
|
||||||
|
'& > *:nth-child(1)': { animationDelay: '0.2s' },
|
||||||
|
'& > *:nth-child(2)': { animationDelay: '0.4s' },
|
||||||
|
'& > *:nth-child(3)': { animationDelay: '0.6s' }
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{/* 支持介绍卡片 */}
|
||||||
|
<Card
|
||||||
|
elevation={3}
|
||||||
|
sx={{
|
||||||
|
borderRadius: '12px',
|
||||||
|
overflow: 'hidden',
|
||||||
|
transition: 'all 0.3s ease',
|
||||||
|
'&:hover': {
|
||||||
|
transform: 'translateY(-8px)',
|
||||||
|
boxShadow: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)',
|
||||||
|
elevation: 5
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<CardHeader
|
||||||
|
avatar={
|
||||||
|
<Box sx={{ bgcolor: theme.palette.primary.light, p: 2, borderRadius: '50%' }}>
|
||||||
|
<SupportIcon fontSize="large" color="primary" />
|
||||||
|
</Box>
|
||||||
|
}
|
||||||
|
title="我们的服务"
|
||||||
|
titleTypographyProps={{
|
||||||
|
variant: 'h6',
|
||||||
|
fontWeight: 600
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<CardContent>
|
||||||
|
<Typography variant="body1" paragraph sx={{ lineHeight: 1.6 }}>
|
||||||
|
如果您在使用一些开源项目遇到问题,需要帮助或者是外包项目,欢迎联系我们。
|
||||||
|
</Typography>
|
||||||
|
<Typography variant="body1" paragraph sx={{ lineHeight: 1.6 }}>
|
||||||
|
我们将提供最优质的服务,确保您的问题得到及时解决。
|
||||||
|
</Typography>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
{/* 价格卡片 */}
|
||||||
|
<Card
|
||||||
|
elevation={3}
|
||||||
|
sx={{
|
||||||
|
borderRadius: '12px',
|
||||||
|
overflow: 'hidden',
|
||||||
|
transition: 'all 0.3s ease',
|
||||||
|
'&:hover': {
|
||||||
|
transform: 'translateY(-8px)',
|
||||||
|
boxShadow: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)',
|
||||||
|
elevation: 5
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<CardHeader
|
||||||
|
avatar={
|
||||||
|
<Box sx={{ bgcolor: theme.palette.primary.light, p: 2, borderRadius: '50%' }}>
|
||||||
|
<CodeIcon fontSize="large" color="primary" />
|
||||||
|
</Box>
|
||||||
|
}
|
||||||
|
title="支持价格"
|
||||||
|
titleTypographyProps={{
|
||||||
|
variant: 'h6',
|
||||||
|
fontWeight: 600
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<CardContent>
|
||||||
|
<Box sx={{ mb: 2, p: 2, bgcolor: 'primary.main', color: 'white', borderRadius: '8px' }}>
|
||||||
|
<Typography variant="body1" paragraph sx={{ fontWeight: 600 }}>
|
||||||
|
普通技术支持:¥20每次
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
<Box sx={{ p: 2, bgcolor: 'primary.light', color: "white", borderRadius: '8px' }}>
|
||||||
|
<Typography variant="body1" paragraph sx={{ fontWeight: 600 }}>
|
||||||
|
外包项目:¥40/项目(大型项目¥70/项目)
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
|
||||||
|
{/* 联系卡片 */}
|
||||||
|
<Card
|
||||||
|
elevation={3}
|
||||||
|
sx={{
|
||||||
|
borderRadius: '12px',
|
||||||
|
overflow: 'hidden',
|
||||||
|
transition: 'all 0.3s ease',
|
||||||
|
'&:hover': {
|
||||||
|
transform: 'translateY(-8px)',
|
||||||
|
boxShadow: '0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)',
|
||||||
|
elevation: 5
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<CardHeader
|
||||||
|
avatar={
|
||||||
|
<Box sx={{ bgcolor: theme.palette.primary.light, p: 2, borderRadius: '50%' }}>
|
||||||
|
<MailIcon fontSize="large" color="primary" />
|
||||||
|
</Box>
|
||||||
|
}
|
||||||
|
title="联系我们"
|
||||||
|
titleTypographyProps={{
|
||||||
|
variant: 'h6',
|
||||||
|
fontWeight: 600
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<CardContent>
|
||||||
|
<Typography variant="body1" paragraph sx={{ lineHeight: 1.6, mb: 3 }}>
|
||||||
|
如有需求请通过以下方式联系我们,我们会尽快回复您的咨询。
|
||||||
|
</Typography>
|
||||||
|
<Button
|
||||||
|
variant="contained"
|
||||||
|
startIcon={<MailIcon />}
|
||||||
|
onClick={handleEmailClick}
|
||||||
|
fullWidth
|
||||||
|
sx={{
|
||||||
|
py: 1.5,
|
||||||
|
borderRadius: '8px',
|
||||||
|
fontWeight: 600,
|
||||||
|
transition: 'all 0.3s ease',
|
||||||
|
'&:hover': {
|
||||||
|
transform: 'translateY(-2px)',
|
||||||
|
boxShadow: '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
发送邮件咨询
|
||||||
|
</Button>
|
||||||
|
<Typography variant="body2" color="text.secondary" align="center" sx={{ mt: 2 }}>
|
||||||
|
leonmmcoset@outlook.com
|
||||||
|
</Typography>
|
||||||
|
</CardContent>
|
||||||
|
</Card>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
{/* 服务流程部分 */}
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
textAlign: 'center',
|
||||||
|
mb: { xs: 8, md: 12 }
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Typography
|
||||||
|
variant={isMobile ? 'h4' : 'h3'}
|
||||||
|
component="h2"
|
||||||
|
gutterBottom
|
||||||
|
sx={{
|
||||||
|
fontWeight: 700,
|
||||||
|
mb: 8,
|
||||||
|
color: theme.palette.primary.main
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
服务流程
|
||||||
|
</Typography>
|
||||||
|
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
display: 'flex',
|
||||||
|
flexDirection: isMobile ? 'column' : 'row',
|
||||||
|
justifyContent: 'space-around',
|
||||||
|
alignItems: isMobile ? 'center' : 'flex-start',
|
||||||
|
gap: { xs: 6, md: 4 },
|
||||||
|
'& > *': {
|
||||||
|
opacity: 0,
|
||||||
|
transform: 'translateY(30px)',
|
||||||
|
animation: 'fadeInUp 0.6s ease-out forwards'
|
||||||
|
},
|
||||||
|
'& > *:nth-child(1)': { animationDelay: '0.2s' },
|
||||||
|
'& > *:nth-child(2)': { animationDelay: '0.4s' },
|
||||||
|
'& > *:nth-child(3)': { animationDelay: '0.6s' },
|
||||||
|
'& > *:nth-child(4)': { animationDelay: '0.8s' }
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{[1, 2, 3, 4].map((step) => {
|
||||||
|
// 确保stepData始终有值
|
||||||
|
const getStepData = (stepNum: number) => {
|
||||||
|
const data = {
|
||||||
|
1: { title: '提交需求', icon: <MailIcon /> },
|
||||||
|
2: { title: '确认方案', icon: <CodeIcon /> },
|
||||||
|
3: { title: '执行服务', icon: <WorkIcon /> },
|
||||||
|
4: { title: '完成交付', icon: <SupportIcon /> }
|
||||||
|
};
|
||||||
|
return data[stepNum as keyof typeof data] || { title: '', icon: <SupportIcon /> };
|
||||||
|
};
|
||||||
|
|
||||||
|
const stepData = getStepData(step);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Box
|
||||||
|
key={step}
|
||||||
|
sx={{
|
||||||
|
display: 'flex',
|
||||||
|
flexDirection: 'column',
|
||||||
|
alignItems: 'center',
|
||||||
|
maxWidth: '200px',
|
||||||
|
textAlign: 'center'
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
width: 80,
|
||||||
|
height: 80,
|
||||||
|
borderRadius: '50%',
|
||||||
|
bgcolor: theme.palette.primary.light,
|
||||||
|
display: 'flex',
|
||||||
|
alignItems: 'center',
|
||||||
|
justifyContent: 'center',
|
||||||
|
mb: 3,
|
||||||
|
position: 'relative',
|
||||||
|
'&::before': {
|
||||||
|
content: `"${step}"`,
|
||||||
|
position: 'absolute',
|
||||||
|
top: '-12px',
|
||||||
|
right: '-12px',
|
||||||
|
width: 32,
|
||||||
|
height: 32,
|
||||||
|
borderRadius: '50%',
|
||||||
|
bgcolor: theme.palette.primary.main,
|
||||||
|
color: 'white',
|
||||||
|
display: 'flex',
|
||||||
|
alignItems: 'center',
|
||||||
|
justifyContent: 'center',
|
||||||
|
fontWeight: 'bold',
|
||||||
|
fontSize: '1rem'
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{React.cloneElement(stepData.icon as React.ReactElement<{ fontSize?: 'small' | 'medium' | 'large', color?: 'primary' | 'secondary' }>, {
|
||||||
|
fontSize: "large",
|
||||||
|
color: "primary"
|
||||||
|
})}
|
||||||
|
</Box>
|
||||||
|
<Typography variant="h6" sx={{ fontWeight: 600, mb: 1 }}>
|
||||||
|
{stepData.title}
|
||||||
|
</Typography>
|
||||||
|
<Typography variant="body2" color="text.secondary">
|
||||||
|
{step === 1 && '通过邮件描述您的技术问题或外包需求'}
|
||||||
|
{step === 2 && '我们确认服务细节和价格'}
|
||||||
|
{step === 3 && '专业团队为您提供技术支持或开发服务'}
|
||||||
|
{step === 4 && '完成服务并确保您满意'}
|
||||||
|
</Typography>
|
||||||
|
</Box>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</Box>
|
||||||
|
</Box>
|
||||||
|
|
||||||
|
{/* CTA 区域 */}
|
||||||
|
<Box
|
||||||
|
sx={{
|
||||||
|
textAlign: 'center',
|
||||||
|
p: { xs: 6, md: 10 },
|
||||||
|
bgcolor: theme.palette.primary.main,
|
||||||
|
color: 'white',
|
||||||
|
borderRadius: '16px',
|
||||||
|
opacity: 0,
|
||||||
|
transform: 'translateY(30px)',
|
||||||
|
animation: 'fadeInUp 0.8s ease-out 1s forwards'
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<Typography
|
||||||
|
variant={isMobile ? 'h4' : 'h3'}
|
||||||
|
component="h2"
|
||||||
|
gutterBottom
|
||||||
|
sx={{
|
||||||
|
fontWeight: 700,
|
||||||
|
mb: 4
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
准备好获取技术支持了吗?
|
||||||
|
</Typography>
|
||||||
|
<Typography variant="body1" sx={{ mb: 6, fontSize: { xs: '1rem', md: '1.1rem' } }}>
|
||||||
|
联系我们,让专业的技术团队为您解决问题
|
||||||
|
</Typography>
|
||||||
|
<Button
|
||||||
|
variant="contained"
|
||||||
|
startIcon={<MailIcon />}
|
||||||
|
onClick={handleEmailClick}
|
||||||
|
sx={{
|
||||||
|
bgcolor: 'white',
|
||||||
|
color: theme.palette.primary.main,
|
||||||
|
px: 6,
|
||||||
|
py: 1.5,
|
||||||
|
borderRadius: '8px',
|
||||||
|
fontWeight: 700,
|
||||||
|
fontSize: '1.1rem',
|
||||||
|
transition: 'all 0.3s ease',
|
||||||
|
'&:hover': {
|
||||||
|
bgcolor: 'rgba(255,255,255,0.9)',
|
||||||
|
transform: 'translateY(-3px)',
|
||||||
|
boxShadow: '0 10px 25px -5px rgba(0, 0, 0, 0.2)'
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
立即联系
|
||||||
|
</Button>
|
||||||
|
</Box>
|
||||||
|
</Container>
|
||||||
|
<style jsx global>{`
|
||||||
|
@keyframes fadeInUp {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(30px);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
`}</style>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
File diff suppressed because one or more lines are too long
@@ -1,9 +1,9 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||||
3:I[31713,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/9b7358d7758892cd.js"],"default"]
|
3:I[31713,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/8e7deecdb523f981.js"],"default"]
|
||||||
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
7:"$Sreact.suspense"
|
7:"$Sreact.suspense"
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/9b7358d7758892cd.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
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}
|
||||||
4:{}
|
4:{}
|
||||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||||
8:null
|
8:null
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||||
7:I[31713,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/9b7358d7758892cd.js"],"default"]
|
7:I[31713,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/8e7deecdb523f981.js"],"default"]
|
||||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
b:"$Sreact.suspense"
|
b:"$Sreact.suspense"
|
||||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
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"]
|
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||||
11:I[68027,[],"default"]
|
11:I[68027,[],"default"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"P":null,"b":"1wDtIOm0eUQkvqYDTJ1Vx","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/86486340847b96f0.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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/9b7358d7758892cd.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":"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}
|
||||||
8:{}
|
8:{}
|
||||||
9:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
|
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"}]]
|
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"]
|
4:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||||
5:"$Sreact.suspense"
|
5:"$Sreact.suspense"
|
||||||
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","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":"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}
|
||||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
6:[["$","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",{}]]
|
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"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/86486340847b96f0.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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":"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}
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","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":"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}
|
||||||
|
|||||||
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/245fb736b92bf729.js
Normal file
1
out/_next/static/chunks/245fb736b92bf729.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/7273b82becfc1543.js
Normal file
1
out/_next/static/chunks/7273b82becfc1543.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/8180cc03a1e3de86.js
Normal file
1
out/_next/static/chunks/8180cc03a1e3de86.js
Normal file
File diff suppressed because one or more lines are too long
1
out/_next/static/chunks/860127cfce37f794.js
Normal file
1
out/_next/static/chunks/860127cfce37f794.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/8e7deecdb523f981.js
Normal file
1
out/_next/static/chunks/8e7deecdb523f981.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
4
out/_next/static/chunks/c0afb4c7ee0eb89a.js
Normal file
4
out/_next/static/chunks/c0afb4c7ee0eb89a.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/ec6493923eff5ab8.css
Normal file
1
out/_next/static/chunks/ec6493923eff5ab8.css
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/f25df963adaf8759.js
Normal file
1
out/_next/static/chunks/f25df963adaf8759.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
@@ -1,16 +1,16 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
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"]
|
9:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
a:"$Sreact.suspense"
|
a:"$Sreact.suspense"
|
||||||
c:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
c:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||||
e:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
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"]
|
10:I[68027,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"P":null,"b":"1wDtIOm0eUQkvqYDTJ1Vx","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/86486340847b96f0.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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/814d2188567f2b40.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":"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}
|
||||||
7:{}
|
7:{}
|
||||||
8:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
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"}]]
|
d:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
|||||||
@@ -1,16 +1,16 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
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"]
|
9:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
a:"$Sreact.suspense"
|
a:"$Sreact.suspense"
|
||||||
c:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
c:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
||||||
e:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
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"]
|
10:I[68027,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"P":null,"b":"1wDtIOm0eUQkvqYDTJ1Vx","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/86486340847b96f0.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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/814d2188567f2b40.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":"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}
|
||||||
7:{}
|
7:{}
|
||||||
8:"$0:f:0:1:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
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"}]]
|
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"]
|
4:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||||
5:"$Sreact.suspense"
|
5:"$Sreact.suspense"
|
||||||
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","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":"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}
|
||||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
6:[["$","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",{}]]
|
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"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/86486340847b96f0.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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":"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}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
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"]
|
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||||
3:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.js"],"default"]
|
3:I[36768,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/7273b82becfc1543.js"],"default"]
|
||||||
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
7:"$Sreact.suspense"
|
7:"$Sreact.suspense"
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/814d2188567f2b40.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
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}
|
||||||
4:{}
|
4:{}
|
||||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||||
8:null
|
8:null
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","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":"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}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1,17 +1,17 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||||
7:I[31713,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/9b7358d7758892cd.js"],"default"]
|
7:I[31713,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/8e7deecdb523f981.js"],"default"]
|
||||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
b:"$Sreact.suspense"
|
b:"$Sreact.suspense"
|
||||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
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"]
|
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||||
11:I[68027,[],"default"]
|
11:I[68027,[],"default"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"P":null,"b":"1wDtIOm0eUQkvqYDTJ1Vx","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/86486340847b96f0.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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/9b7358d7758892cd.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":"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}
|
||||||
8:{}
|
8:{}
|
||||||
9:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
|
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"}]]
|
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1,17 +1,17 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||||
7:I[76603,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/316b2e9eaee3636f.js"],"default"]
|
7:I[76603,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/860127cfce37f794.js"],"default"]
|
||||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
b:"$Sreact.suspense"
|
b:"$Sreact.suspense"
|
||||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
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"]
|
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||||
11:I[68027,[],"default"]
|
11:I[68027,[],"default"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"P":null,"b":"1wDtIOm0eUQkvqYDTJ1Vx","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/86486340847b96f0.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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/316b2e9eaee3636f.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":"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}
|
||||||
8:{}
|
8:{}
|
||||||
9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
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"}]]
|
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||||
7:I[76603,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/316b2e9eaee3636f.js"],"default"]
|
7:I[76603,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/860127cfce37f794.js"],"default"]
|
||||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
b:"$Sreact.suspense"
|
b:"$Sreact.suspense"
|
||||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
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"]
|
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||||
11:I[68027,[],"default"]
|
11:I[68027,[],"default"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"P":null,"b":"1wDtIOm0eUQkvqYDTJ1Vx","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/86486340847b96f0.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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/316b2e9eaee3636f.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":"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}
|
||||||
8:{}
|
8:{}
|
||||||
9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
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"}]]
|
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"]
|
4:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||||
5:"$Sreact.suspense"
|
5:"$Sreact.suspense"
|
||||||
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","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":"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}
|
||||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
6:[["$","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",{}]]
|
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"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/86486340847b96f0.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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":"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}
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","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":"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}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
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"]
|
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
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"]
|
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||||
3:I[76603,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/316b2e9eaee3636f.js"],"default"]
|
3:I[76603,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/860127cfce37f794.js"],"default"]
|
||||||
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
7:"$Sreact.suspense"
|
7:"$Sreact.suspense"
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/316b2e9eaee3636f.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
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}
|
||||||
4:{}
|
4:{}
|
||||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||||
8:null
|
8:null
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1,17 +1,17 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||||
7:I[39294,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/f3021cc8fe883b87.js"],"default"]
|
7:I[39294,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/c0afb4c7ee0eb89a.js"],"default"]
|
||||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
b:"$Sreact.suspense"
|
b:"$Sreact.suspense"
|
||||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
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"]
|
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||||
11:I[68027,[],"default"]
|
11:I[68027,[],"default"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"P":null,"b":"1wDtIOm0eUQkvqYDTJ1Vx","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/86486340847b96f0.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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/f3021cc8fe883b87.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":"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}
|
||||||
8:{}
|
8:{}
|
||||||
9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
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"}]]
|
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||||
7:I[39294,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/f3021cc8fe883b87.js"],"default"]
|
7:I[39294,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/c0afb4c7ee0eb89a.js"],"default"]
|
||||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
b:"$Sreact.suspense"
|
b:"$Sreact.suspense"
|
||||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
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"]
|
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||||
11:I[68027,[],"default"]
|
11:I[68027,[],"default"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"P":null,"b":"1wDtIOm0eUQkvqYDTJ1Vx","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/86486340847b96f0.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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/f3021cc8fe883b87.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":"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}
|
||||||
8:{}
|
8:{}
|
||||||
9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
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"}]]
|
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"]
|
4:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||||
5:"$Sreact.suspense"
|
5:"$Sreact.suspense"
|
||||||
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","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":"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}
|
||||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
6:[["$","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",{}]]
|
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"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/86486340847b96f0.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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":"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}
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","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":"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}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
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"]
|
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
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"]
|
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||||
3:I[39294,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/f3021cc8fe883b87.js"],"default"]
|
3:I[39294,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/c0afb4c7ee0eb89a.js"],"default"]
|
||||||
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
7:"$Sreact.suspense"
|
7:"$Sreact.suspense"
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/f3021cc8fe883b87.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
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}
|
||||||
4:{}
|
4:{}
|
||||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||||
8:null
|
8:null
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1,17 +1,17 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||||
7:I[25139,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/cd6edfa5d762d6d6.js"],"default"]
|
7:I[25139,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/8180cc03a1e3de86.js"],"default"]
|
||||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
b:"$Sreact.suspense"
|
b:"$Sreact.suspense"
|
||||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
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"]
|
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||||
11:I[68027,[],"default"]
|
11:I[68027,[],"default"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"P":null,"b":"1wDtIOm0eUQkvqYDTJ1Vx","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/86486340847b96f0.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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/cd6edfa5d762d6d6.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":"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}
|
||||||
8:{}
|
8:{}
|
||||||
9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
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"}]]
|
e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
|
|||||||
@@ -1,17 +1,17 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
6:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||||
7:I[25139,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/cd6edfa5d762d6d6.js"],"default"]
|
7:I[25139,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/8180cc03a1e3de86.js"],"default"]
|
||||||
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
a:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
b:"$Sreact.suspense"
|
b:"$Sreact.suspense"
|
||||||
d:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ViewportBoundary"]
|
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"]
|
f:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||||
11:I[68027,[],"default"]
|
11:I[68027,[],"default"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"P":null,"b":"1wDtIOm0eUQkvqYDTJ1Vx","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/86486340847b96f0.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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/cd6edfa5d762d6d6.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":"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}
|
||||||
8:{}
|
8:{}
|
||||||
9:"$0:f:0:1:1:children:1:children:1:children:0:props:children:0:props:serverProvidedParams:params"
|
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"}]]
|
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"]
|
4:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"MetadataBoundary"]
|
||||||
5:"$Sreact.suspense"
|
5:"$Sreact.suspense"
|
||||||
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
7:I[27201,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"IconMark"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","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":"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}
|
||||||
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
3:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
||||||
6:[["$","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",{}]]
|
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"
|
1:"$Sreact.fragment"
|
||||||
2:I[54871,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js"],"default"]
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js"],"default"]
|
||||||
3:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.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"]
|
4:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
5:I[36768,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/814d2188567f2b40.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"]
|
||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/86486340847b96f0.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/1d3e5839da2b1eff.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/62ff1e74c82af582.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/80c63b7d77b044eb.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":"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}
|
||||||
|
|||||||
@@ -1,2 +1,2 @@
|
|||||||
:HL["/_next/static/chunks/86486340847b96f0.css","style"]
|
:HL["/_next/static/chunks/ec6493923eff5ab8.css","style"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","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":"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}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
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"]
|
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[39756,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
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"]
|
3:I[37457,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"default"]
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
0:{"buildId":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
1:"$Sreact.fragment"
|
1:"$Sreact.fragment"
|
||||||
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
2:I[47257,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"ClientPageRoot"]
|
||||||
3:I[25139,["/_next/static/chunks/1d3e5839da2b1eff.js","/_next/static/chunks/62ff1e74c82af582.js","/_next/static/chunks/80c63b7d77b044eb.js","/_next/static/chunks/cd6edfa5d762d6d6.js"],"default"]
|
3:I[25139,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/8180cc03a1e3de86.js"],"default"]
|
||||||
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
6:I[97367,["/_next/static/chunks/ff1a16fafef87110.js","/_next/static/chunks/247eb132b7f7b574.js"],"OutletBoundary"]
|
||||||
7:"$Sreact.suspense"
|
7:"$Sreact.suspense"
|
||||||
0:{"buildId":"1wDtIOm0eUQkvqYDTJ1Vx","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/cd6edfa5d762d6d6.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
|
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}
|
||||||
4:{}
|
4:{}
|
||||||
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||||
8:null
|
8:null
|
||||||
|
|||||||
1
out/support.html
Normal file
1
out/support.html
Normal file
File diff suppressed because one or more lines are too long
20
out/support.txt
Normal file
20
out/support.txt
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.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"]
|
||||||
|
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"]
|
||||||
|
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}
|
||||||
|
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/support/__next._full.txt
Normal file
20
out/support/__next._full.txt
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.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"]
|
||||||
|
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"]
|
||||||
|
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}
|
||||||
|
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/support/__next._head.txt
Normal file
8
out/support/__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":"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}
|
||||||
|
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/support/__next._index.txt
Normal file
7
out/support/__next._index.txt
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
1:"$Sreact.fragment"
|
||||||
|
2:I[54871,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.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"]
|
||||||
|
: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}
|
||||||
2
out/support/__next._tree.txt
Normal file
2
out/support/__next._tree.txt
Normal file
@@ -0,0 +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}
|
||||||
4
out/support/__next.support.txt
Normal file
4
out/support/__next.support.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":"r7P_3whGbvZmrfgU0P2dv","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
||||||
9
out/support/__next.support/__PAGE__.txt
Normal file
9
out/support/__next.support/__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[64829,["/_next/static/chunks/245fb736b92bf729.js","/_next/static/chunks/2241c83427f1dec8.js","/_next/static/chunks/ee98e82c6307295e.js","/_next/static/chunks/f25df963adaf8759.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}
|
||||||
|
4:{}
|
||||||
|
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
||||||
|
8:null
|
||||||
Reference in New Issue
Block a user