vite-riot-template/src/components/riot-welcome.riot

52 lines
1.4 KiB
Plaintext
Raw Normal View History

2024-09-01 15:45:46 +00:00
<riot-welcome>
<section class="splash">
<h2>Welcome to Your Riot.js Application</h2>
2022-07-18 03:50:39 +00:00
<p>
Start your development with
2022-09-09 03:02:22 +00:00
<a>Riot</a>, a component-based ui library, running on the
<a>Vite</a> front-end tooling.
2022-07-18 03:50:39 +00:00
</p>
2024-09-01 15:45:46 +00:00
<h3>Getting Started</h3>
2022-07-18 03:50:39 +00:00
<p>
2023-03-02 19:29:00 +00:00
This page is found at <br/>
2024-09-01 15:45:46 +00:00
<code>src/components/riot-welcome.riot</code>
2022-07-18 03:50:39 +00:00
<p>
2024-09-01 15:45:46 +00:00
and is registered via <br/>
2023-03-02 19:32:41 +00:00
<code>src/app.js</code>
2022-07-18 03:50:39 +00:00
</p>
</p>
2024-09-01 15:45:46 +00:00
<h3>Documentation</h3>
2022-07-18 03:50:39 +00:00
2022-07-29 04:14:19 +00:00
<div class="flex">
2022-07-18 03:50:39 +00:00
<span>
<a href="https://riot.js.org/documentation/">Riot </a>
2023-03-02 19:29:00 +00:00
<br/>
2022-07-18 03:50:39 +00:00
<code>{props.version}</code>
</span>
<em>or</em>
<span>
<a href="https://vitejs.dev/guide/">Vite</a>
2023-03-02 19:29:00 +00:00
<br/>
2024-07-30 01:31:16 +00:00
<code>v5.x</code>
2022-07-18 03:50:39 +00:00
</span>
</div>
2024-09-01 15:45:46 +00:00
<h3>Ecosystem</h3>
2022-07-18 03:50:39 +00:00
2022-07-29 04:14:19 +00:00
<div class="flex">
2022-07-18 03:50:39 +00:00
<a href="https://github.com/riot/examples">Examples</a>
2022-07-29 03:21:53 +00:00
<a href="https://github.com/riot/route">Router</a>
2022-07-18 03:50:39 +00:00
<a href="https://github.com/riot/riot/blob/main/AWESOME.md">Community</a>
<a href="https://github.com/riot/riot">Github</a>
</div>
2024-09-01 15:45:46 +00:00
</section>
2022-07-18 03:50:39 +00:00
<script>
export default {
}
</script>
2024-09-01 15:45:46 +00:00
</riot-welcome>