diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-08-27 01:05:43 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-08-27 01:05:43 -0700 |
| commit | 53c7ce959b5c72002c5444b7d6e5b458331a4275 (patch) | |
| tree | 1226a3694ea2f840bb6c3353a4ee5282efd43bf0 /src/pages | |
Initial commit
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/index.astro | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro new file mode 100644 index 0000000..a8653b3 --- /dev/null +++ b/src/pages/index.astro @@ -0,0 +1,14 @@ +--- +import Layout from '../layouts/Layout.astro'; +import FFXIVItemPrice from '../components/FFXIVItemPrice'; +import FFXIVWorldSelector from '../components/FFXIVWorldSelector'; +--- + +<Layout title="FFXIV-MDX-React-Components"> + <h1>FFXIV-MDX-React-Components</h1> + <p>FFXIV-MDX-React-Components is a collection of components for Final Fantasy XIV related data. It is built with MDX and React.</p> + <FFXIVWorldSelector client:load message="Set your home world to get crowdsourced marketboard information!" /> + <br/> + <FFXIVItemPrice client:load itemId={10393} itemName="Thavnairian Bustier" itemImageUrl="https://www.garlandtools.org/files/icons/item/42441.png" /> +</Layout> + |
