vite-riot-template/app/pages/riot-welcome.riot

53 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>
2025-03-22 22:13:08 +00:00
Start development with
<a>RiotJS</a>, a component-based ui library,
<a>Riot/Route</a>, a client-side routing library, and
<a>Vite</a> front-end build 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/>
2025-03-22 22:13:08 +00:00
<code>app/pages/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/>
2025-03-22 22:13:08 +00:00
<code>app/boot.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/>
2025-03-22 22:13:08 +00:00
<code>v6.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>