2024-12-01 01:44:43 -05:00
|
|
|
---
|
|
|
|
Title: Basic Usage
|
|
|
|
Type: Document
|
|
|
|
---
|
|
|
|
|
2025-02-05 19:45:01 -05:00
|
|
|
import {Code} from "astro:components"
|
2024-12-01 01:44:43 -05:00
|
|
|
import {Zorn} from "@minpluto/zorn"
|
|
|
|
|
|
|
|
<Zorn
|
|
|
|
PlayerName="ennie_and_yoyki"
|
|
|
|
Poster="https://ocean.sudovanilla.org/media/videos/Ennie%20and%20Yoyki/Poster.png"
|
|
|
|
Video="https://ocean.sudovanilla.org/media/videos/Ennie%20and%20Yoyki/Ennie%20and%20Yoyki:%20Non-Girly%20Games.mp4"
|
|
|
|
/>
|
|
|
|
|
|
|
|
You can add it to any page on your Astro website by importing Zorn:
|
|
|
|
|
2025-02-05 19:45:01 -05:00
|
|
|
<Code lang="jsx" code={
|
2024-12-01 01:44:43 -05:00
|
|
|
`---
|
|
|
|
import {Zorn} from "@minpluto/zorn"
|
|
|
|
---
|
|
|
|
|
|
|
|
<Zorn
|
|
|
|
PlayerName="ennie_and_yoyki"
|
|
|
|
Poster="https://ocean.sudovanilla.org/media/videos/Ennie%20and%20Yoyki/Poster.png"
|
|
|
|
Video="https://ocean.sudovanilla.org/media/videos/Ennie%20and%20Yoyki/Ennie%20and%20Yoyki:%20Non-Girly%20Games.mp4"
|
|
|
|
/>
|
|
|
|
`}/>
|
|
|
|
|
|
|
|
> The option `PlayerName` is required.
|