mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
14 lines
290 B
Text
14 lines
290 B
Text
---
|
|
interface Props {
|
|
class: string
|
|
}
|
|
|
|
import * as m from '../../paraglide/messages.js'
|
|
|
|
import { getRandomAlbum } from 'utils/queries'
|
|
|
|
const album = await getRandomAlbum()
|
|
const { class: className } = Astro.props
|
|
---
|
|
|
|
<a href={`/album/${album.id}`} class={className}>{m.getLucky()}</a>
|