-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5113387
commit 664d19c
Showing
3 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<script lang="ts"> | ||
import FeatureCard from "$lib/components/FeatureCard.svelte"; | ||
</script> | ||
|
||
<div class="container mx-auto p-4"> | ||
<h1 class="text-2xl font-bold mb-4">Mod Data</h1> | ||
|
||
<div class="container mx-auto mt-12"> | ||
<div class="grid grid-cols-2 gap-4"> | ||
<div class="mx-auto" > | ||
<FeatureCard | ||
title="Edit Mob Data" | ||
description="View and edit the mob data for the site" | ||
link="/mod-data/mobs" | ||
target="" | ||
linkText="See Data" | ||
></FeatureCard> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |