Merge branch 'develop'
This commit is contained in:
commit
0ac691a5c8
2 changed files with 22 additions and 0 deletions
|
@ -3,10 +3,12 @@ import Main from './components/Main'
|
||||||
import ProfileForm from './components/ProfileForm'
|
import ProfileForm from './components/ProfileForm'
|
||||||
import BadgeList from './components/BadgeList'
|
import BadgeList from './components/BadgeList'
|
||||||
import Layout from './components/Layout'
|
import Layout from './components/Layout'
|
||||||
|
import VersionLink from './components/VersionLink'
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
<Layout>
|
<Layout>
|
||||||
|
<VersionLink></VersionLink>
|
||||||
<Main>
|
<Main>
|
||||||
<ProfileForm></ProfileForm>
|
<ProfileForm></ProfileForm>
|
||||||
<Toaster richColors position="top-center" />
|
<Toaster richColors position="top-center" />
|
||||||
|
|
20
src/app/options/components/VersionLink.tsx
Normal file
20
src/app/options/components/VersionLink.tsx
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
import { FC } from 'react'
|
||||||
|
import { Button } from '@/components/ui/Button'
|
||||||
|
import Link from '@/components/Link'
|
||||||
|
import { version } from '@/../package.json'
|
||||||
|
|
||||||
|
const VersionLink: FC = () => {
|
||||||
|
return (
|
||||||
|
<Button
|
||||||
|
size="lg"
|
||||||
|
variant="ghost"
|
||||||
|
className="fixed right-4 top-2 rounded-full px-3 text-base font-medium text-primary"
|
||||||
|
>
|
||||||
|
<Link href="https://github.com/molvqingtai/WebChat/releases">Version: v{version}</Link>
|
||||||
|
</Button>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
VersionLink.displayName = 'VersionLink'
|
||||||
|
|
||||||
|
export default VersionLink
|
Loading…
Add table
Reference in a new issue