movie-night-web/app/pages/index.vue

38 lines
761 B
Vue
Raw Normal View History

2026-02-16 19:12:00 -06:00
<script lang="ts" setup>
import PageTitle from "~/components/common/page-title.vue";
const user = "Eddie";
const welcomeMessage = computed(() => `Welcome, ${user}!`)
</script>
<template>
<div class="content">
<PageTitle :title="welcomeMessage"/>
2026-02-16 19:12:00 -06:00
<div>
<h2>Next up</h2>
<span>Nothing Scheduled :(</span>
</div>
<div>
<h2>Activity Feed</h2>
<ul>
<li>Ed created a list: "Best of 2023"</li>
<li>Ed added a movie to "Best of 2023": "The Dark Knight"</li>
<li>Ed added a movie to "Best of 2023": "The Dark Knight Rises"</li>
</ul>
</div>
</div>
</template>
<style scoped>
.page-title {
margin: 1rem 0;
}
.content {
display: flex;
flex-direction: column;
gap: 2rem;
}
</style>