Getting all the things working.

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-10-18 21:33:45 -04:00
parent 4502c92f9b
commit 6068faf026
5 changed files with 1770 additions and 0 deletions

19
frontend/src/App.vue Normal file
View File

@@ -0,0 +1,19 @@
<template>
<div id="app">
<h1>Plex Playlist</h1>
<p>Welcome to the Plex Playlist Manager</p>
</div>
</template>
<script setup lang="ts">
// Main App component
</script>
<style scoped>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
text-align: center;
color: #2c3e50;
margin-top: 60px;
}
</style>

4
frontend/src/main.ts Normal file
View File

@@ -0,0 +1,4 @@
import { createApp } from 'vue';
import App from './App.vue';
createApp(App).mount('#app');