Files
failwell/src/App.vue
Julien Calixte 1a6befe747 feat: add comprehensive About page
Explain Fail Well's purpose, its origins from Toyota Production System's
standardized work, and how it differs from micromanagement. Include
author attribution and footer navigation link.
2026-01-24 15:22:44 +01:00

63 lines
982 B
Vue

<script setup lang="ts">
import { RouterLink, RouterView } from 'vue-router'
</script>
<template>
<div class="app">
<header>
<nav>
<router-link class="title is-3" to="/">
<img class="logo" src="/loop.png" alt="Fail Well" />
</router-link>
</nav>
</header>
<main>
<RouterView />
</main>
<footer>
<router-link to="/about">about</router-link>
<span class="separator">|</span>
<a
href="https://github.com/jcalixte/failwell/issues"
target="_blank"
rel="noopener noreferrer"
>report an issue</a
>
</footer>
</div>
</template>
<style scoped>
.app {
display: flex;
flex-direction: column;
height: 100vh;
}
nav {
margin: 1rem 0;
display: flex;
justify-content: center;
}
img.logo {
max-width: 40px;
}
main {
flex: 1;
}
footer {
text-align: right;
font-size: 0.8rem;
}
footer .separator {
margin: 0 0.5rem;
color: #ccc;
}
</style>