teacher-tools/app/src/views/HomeView.vue

26 lines
628 B
Vue

<script setup lang="ts"></script>
<template>
<main>
<h1>Home Page</h1>
<p>
Welcome to Teacher-Tools, a website with tools that help teachers to manage their classrooms.
</p>
<hr>
<h2>Applications</h2>
<p>
The following list of applications are available for you:
</p>
<ul>
<li>
<RouterLink to="/classroom-compliance">Classroom Compliance</RouterLink>
-
Track your students' phone usage and behavior patterns, and calculate weighted grades.
</li>
<li>
<em>... and more to come soon!</em>
</li>
</ul>
</main>
</template>