mirror of
https://github.com/LucasVbr/notion-widgets.git
synced 2026-05-13 17:21:55 +00:00
13 lines
392 B
Plaintext
13 lines
392 B
Plaintext
---
|
|
import {WidgetState} from '../models/WidgetState';
|
|
type Props = {
|
|
widget: WidgetState
|
|
}
|
|
|
|
const {widget}: Props = Astro.props;
|
|
---
|
|
|
|
<a href={widget.url} class="p-4 rounded-2xl border-[1px] shadow-md active:scale-95 transition-all ease-in-out duration-100">
|
|
<h2 class="font-bold text-xl">{widget.data.name}</h2>
|
|
{widget.data.description && <p>{widget.data.description}</p>}
|
|
</a> |