Skip to content

Commit

Permalink
Fix: Updated UI (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangsonww committed Mar 12, 2024
1 parent 592b71e commit bcda27f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions MovieVerse-Frontend/App.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<template>
<div id="app">
<header>
<h1>Welcome to The MovieVerse</h1>
</header>

<main>
<router-view></router-view>
</main>

<aside>
<h2>Upcoming Movies</h2>
</aside>

<footer>
<p>&copy; 2023 The MovieVerse. All rights reserved.</p>
</footer>
</div>
</template>

<script>
export default {
name: 'App',
};
</script>

<style>
#app {
text-align: center;
}
</style>

0 comments on commit bcda27f

Please sign in to comment.