- Created a new About page (index.html) detailing the BotServer platform, its features, and technology stack. - Developed a Login page (login.html) with sign-in and sign-up functionality, including form validation and user feedback messages. - Removed the empty style.css file as it is no longer needed.
14 lines
332 B
HTML
14 lines
332 B
HTML
<!-- Riot.js component for the news page (converted from app/news/page.tsx) -->
|
|
<template>
|
|
<div class="flex flex-col h-screen bg-gray-50">
|
|
<!-- Add news page content here -->
|
|
</div>
|
|
</template>
|
|
|
|
<script type="module">
|
|
import './style.css';
|
|
|
|
export default {
|
|
// No additional state needed for this simple page
|
|
};
|
|
</script>
|