2025-10-26 00:02:19 -03:00
|
|
|
<!-- 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>
|
|
|
|
|
|
2025-10-26 08:07:14 -03:00
|
|
|
<script >
|
2025-10-26 00:02:19 -03:00
|
|
|
import './style.css';
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
// No additional state needed for this simple page
|
|
|
|
|
};
|
|
|
|
|
</script>
|