-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
47 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
export default async function Loading() { | ||
return ( | ||
<div className="h-[calc(80vh-80px)] flex flex-col items-center justify-center"> | ||
<h2 className="font-mono text-lg">加载中...</h2> | ||
</div> | ||
); | ||
import LoadingSkeleton from '../components/LoadingSkeleton'; | ||
|
||
export default function Loading() { | ||
return <LoadingSkeleton />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
export default function Footer() { | ||
return ( | ||
<footer className="h-[100px] mx-40 flex items-center justify-between text-violet12 font-regular"> | ||
<div> | ||
Copyright © 2023 - PRESENT{' '} | ||
<a href="/" className="text-[#175199]"> | ||
Axnir's Site | ||
</a> | ||
</div> | ||
<div> | ||
Powered by{' '} | ||
<a href="nextjs.org" className="text-[#175199]"> | ||
Next.js | ||
</a> | ||
</div> | ||
</footer> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export default function LoadingSkeleton() { | ||
// TODOui | ||
return ( | ||
<div className="min-h-[calc(100vh-180px)] flex flex-col items-center justify-center"> | ||
<h2 className="text-lg">加载中...</h2> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
export default async function Loading() { | ||
return ( | ||
<div className="h-[calc(80vh-80px)] flex flex-col items-center justify-center"> | ||
<h2 className="font-mono text-lg">加载中...</h2> | ||
</div> | ||
); | ||
import LoadingSkeleton from './components/LoadingSkeleton'; | ||
|
||
export default function Loading() { | ||
return <LoadingSkeleton />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
export default async function Loading() { | ||
return ( | ||
<div className="h-[50vh] mt-[80px] flex flex-col items-center justify-center"> | ||
<h2 className="font-mono text-lg">加载中...</h2> | ||
</div> | ||
); | ||
import LoadingSkeleton from '../components/LoadingSkeleton'; | ||
|
||
export default function Loading() { | ||
return <LoadingSkeleton />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters