mirror of
https://github.com/ershisan99/www.git
synced 2026-02-01 05:22:07 +00:00
add log parser to the tools menu.
add support us page
This commit is contained in:
@@ -1,10 +0,0 @@
|
||||
export default async function About() {
|
||||
return (
|
||||
<div className={'container mx-auto pt-8'}>
|
||||
<div className={'prose'}>
|
||||
<h1>About</h1>
|
||||
<p>This is empty for now, we'll add some content here soon.</p>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -571,7 +571,7 @@ export default function LogParser() {
|
||||
<DropzoneGroup>
|
||||
<DropzoneTitle>Drop log file here or click</DropzoneTitle>
|
||||
<DropzoneDescription>
|
||||
Upload your Balatro <strong>log.txt</strong> file.
|
||||
Upload your logs file.
|
||||
</DropzoneDescription>
|
||||
</DropzoneGroup>
|
||||
</DropzoneGroup>
|
||||
|
||||
34
src/app/(home)/support-us/page.tsx
Normal file
34
src/app/(home)/support-us/page.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
import { ExternalLink } from 'lucide-react'
|
||||
import Link from 'next/link'
|
||||
|
||||
export default async function SupportUsPage() {
|
||||
return (
|
||||
<div className={'container mx-auto pt-8'}>
|
||||
<div className={'prose'}>
|
||||
<h1>Support us</h1>
|
||||
<p>
|
||||
<Link
|
||||
target={'_blank'}
|
||||
rel={'noopener noreferrer'}
|
||||
href={'https://ko-fi.com/virtualized/shop'}
|
||||
className={'flex items-center gap-1'}
|
||||
>
|
||||
Support Multiplayer Mod development{' '}
|
||||
<ExternalLink className={'size-4'} />
|
||||
</Link>
|
||||
</p>
|
||||
<p>
|
||||
<Link
|
||||
target={'_blank'}
|
||||
rel={'noopener noreferrer'}
|
||||
href={'https://ko-fi.com/andy_balatro'}
|
||||
className={'flex items-center gap-1'}
|
||||
>
|
||||
Support the development of this website{' '}
|
||||
<ExternalLink className={'size-4'} />
|
||||
</Link>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user