Mirrors youngstartup/frontend/startups_portal scaffolding: Vite, Vue 3 (composition API + script setup), TypeScript strict, Pinia, Vue Router 5, oxlint + eslint + oxfmt, and Cypress with db:reset / db:seed tasks. Views and the auth store are stubs filled in by the next branches; routes and the header chrome are wired so the build passes.
22 lines
393 B
Vue
22 lines
393 B
Vue
<script setup lang="ts">
|
|
// Home page placeholder. Featured posts, recent posts and user
|
|
// search land here in a later branch.
|
|
</script>
|
|
|
|
<template>
|
|
<section class="home">
|
|
<h1>TIDE</h1>
|
|
<p class="lead">A blog. Sign up to start posting.</p>
|
|
</section>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.home {
|
|
padding: 32px 0;
|
|
}
|
|
|
|
.lead {
|
|
color: var(--color-secondary);
|
|
font-size: 16px;
|
|
}
|
|
</style>
|