trnovel 0.9.0

Terminal reader for novel
Documentation
---
import { Card } from '@astrojs/starlight/components'
import { LinkButton } from 'starlight-theme-nova/components'

type Props = {
    title: string
    downloadLink: string
}
const { title, downloadLink } = Astro.props
---

<Card title={title}>
    <LinkButton
        href={downloadLink}
        download
        style={{
            cursor: 'pointer',
            height: '2.4rem',
        }}
        class="download-button"
    >
        <slot />下载</LinkButton
    >
</Card>