-
Notifications
You must be signed in to change notification settings - Fork 121
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
17 changed files
with
125 additions
and
37 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
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,6 +1,56 @@ | ||
'use client' | ||
|
||
export default async function About() { | ||
import favicon from '~/public/favicon.svg' | ||
import Image from 'next/image' | ||
import { Divider, Avatar } from '@nextui-org/react' | ||
import { BookOpenCheck, ExternalLink, Github } from 'lucide-react' | ||
import Link from 'next/link' | ||
|
||
export default function About() { | ||
return ( | ||
<p>关于</p> | ||
<div className="flex flex-col space-y-2 h-full flex-1 w-full mx-auto items-center p-2"> | ||
<Image | ||
className="my-4" | ||
src={favicon} | ||
alt="Logo" | ||
width={64} | ||
height={64} | ||
/> | ||
<span>令人惊叹的在线 ⌈相片集⌋</span> | ||
<Divider className="my-4" /> | ||
<div className="flex flex-col w-full"> | ||
<Link | ||
className="flex items-center w-full p-2 hover:bg-slate-100" | ||
href="https://picimpact.heming.dev/" | ||
target="_blank" | ||
> | ||
<BookOpenCheck /> | ||
<span className="flex-1 px-2">文档</span> | ||
<ExternalLink /> | ||
</Link> | ||
<Link | ||
className="flex items-center w-full p-2 hover:bg-slate-100" | ||
href="https://github.com/besscroft/PicImpact" | ||
target="_blank" | ||
> | ||
<Github /> | ||
<span className="flex-1 px-2">GitHub</span> | ||
<ExternalLink /> | ||
</Link> | ||
</div> | ||
<Divider className="my-4" /> | ||
<div className="flex flex-col w-full"> | ||
<span>开发者</span> | ||
<Link | ||
className="flex items-center w-full p-2 hover:bg-slate-100" | ||
href="https://github.com/besscroft" | ||
target="_blank" | ||
> | ||
<Avatar src="https://besscroft.com/uploads/avatar.jpg" /> | ||
<span className="flex-1 px-2">Bess Croft</span> | ||
<ExternalLink /> | ||
</Link> | ||
</div> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
export default function Preferences() { | ||
|
||
export default async function Preferences() { | ||
return ( | ||
<p>首选项</p> | ||
<div className="flex flex-col space-y-2 h-full flex-1"> | ||
首选项 | ||
</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
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
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
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