-
Notifications
You must be signed in to change notification settings - Fork 27
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
72c42cd
commit c5e0562
Showing
1 changed file
with
47 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
layout: home | ||
titleTemplate: false | ||
description: The Lethal Company Modding Wiki. Learn how to install, manage, and create mods for Lethal Company! | ||
hero: | ||
name: Lethal Company Modding Wiki | ||
tagline: Welcome to the Lethal Company modding guide! Learn how to install, manage, and create mods for Lethal Company! | ||
actions: | ||
- theme: brand | ||
text: Beginners Guide | ||
link: /beginners-guide.html | ||
- theme: alt | ||
text: Edit on GitHub | ||
link: https://github.com/LethalCompany/ModdingWiki | ||
--- | ||
|
||
<script setup lang="ts"> | ||
import Home from './.vitepress/components/Home.vue' | ||
import HomeGroup from './.vitepress/components/HomeGroup.vue' | ||
import HomeItem from './.vitepress/components/HomeItem.vue' | ||
import HomeLinks from './.vitepress/components/HomeLinks.vue' | ||
</script> | ||
|
||
<Home> | ||
<HomeGroup title="Installing Mods"> | ||
<HomeItem name="Beginners guide" href="./beginners-guide.html" /> | ||
<HomeItem name="Using r2modman" href="./installation/installing-r2modman.html" /></HomeGroup> | ||
|
||
<HomeGroup title="Creating Mods"> | ||
<HomeItem name="Initial modding setup" href="./modding/initial-setup.html" /> | ||
<HomeItem name="Starting a mod" href="./modding/starting-a-mod.html" /> | ||
<HomeItem name="Open-source and ethics" href="./modding/open-source-and-ethics.html" /> | ||
<HomeItem name="Publishing your mod" href="./modding/publishing-your-mod.html" /></HomeGroup> | ||
|
||
<HomeGroup title="Other Resources"> | ||
<HomeItem name="Frequently Asked Questions" href="./extras/faq.html" /> | ||
<HomeItem name="Contributing translations" href="./translation/translating-the-wiki.html" /> | ||
<HomeItem name="About" href="./extras/about.html" /></HomeGroup> | ||
|
||
|
||
<HomeLinks> | ||
|
||
- [Join the Discord server!](https://discord.gg/nYcQFEpXfU) | ||
- [Contribute on GitHub](https://github.com/LethalCompany/ModdingWiki) | ||
- [Translate the Wiki](./translation/translating-the-wiki.html) - Localize the wiki to your language! | ||
|
||
</HomeLinks> |