Add frontend/src/views/HomeView.vue
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<template>
|
||||
<div class="home">
|
||||
<h1>Welcome to FreeTable</h1>
|
||||
<p>A collaborative spreadsheet application</p>
|
||||
<div class="actions">
|
||||
<router-link to="/register" class="btn btn-primary">Get Started</router-link>
|
||||
<router-link to="/workspaces" class="btn btn-secondary">View Workspaces</router-link>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.home {
|
||||
text-align: center;
|
||||
padding: 3rem;
|
||||
}
|
||||
.actions {
|
||||
margin-top: 2rem;
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
justify-content: center;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user