forked from hoangsonww/The-MovieVerse-Database
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.vue
99 lines (90 loc) · 3.23 KB
/
App.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<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>© 2023 The MovieVerse. All rights reserved.</p>
</footer>
</div>
</template>
<script>
export default {
name: 'App',
metaInfo: {
title: 'The MovieVerse - Explore Movies, TV Series, and More',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1.0' },
{ name: 'description', content: 'Explore The MovieVerse to discover and learn about your favorite movies, directors, actors, and more.' },
{ property: 'og:title', content: 'The MovieVerse - Your Ultimate Movie Guide' },
{ property: 'og:description', content: 'Explore The MovieVerse to discover and learn about your favorite movies, directors, actors, and more.' },
{ property: 'og:type', content: 'website' },
{ property: 'og:url', content: 'https://movie-verse.com/' },
{ property: 'og:image', content: 'https://movie-verse.com/images/image.png' },
{ property: 'og:site_name', content: 'The MovieVerse' },
{ property: 'og:locale', content: 'en_US' },
{ name: 'author', content: 'Son Nguyen Hoang' },
{ name: 'keywords', content: 'movies, film guide, directors, actors, movie genres, cinema, film reviews, tv shows, movie verse, movieverse, film' },
{ name: 'robots', content: 'index, follow' },
{ name: 'revisit-after', content: '1 day' },
{ name: 'language', content: 'English' },
{ name: 'theme-color', content: '#7378c5' },
{ name: 'twitter:card', content: 'summary' },
{ name: 'twitter:site', content: '@movieverse' },
{ name: 'twitter:title', content: 'The MovieVerse - Your Ultimate Movie Guide' },
{ name: 'twitter:description', content: 'Explore The MovieVerse to discover and learn about your favorite movies, directors, actors, and more.' },
{ name: 'twitter:image', content: 'https://movie-verse.com/images/image.png' }
],
link: [
{ rel: 'icon', type: 'image/x-icon', href: 'https://movie-verse.com/images/favicon.ico' },
{ rel: 'canonical', href: 'https://movie-verse.com/' },
{ rel: 'stylesheet', href: 'https://movie-verse.com/MovieVerse-Frontend/css/style.css' },
{ rel: 'stylesheet', href: 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Open+Sans:wght@200;400;600&display=swap' }
]
}
};
</script>
<style>
#app {
text-align: center;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header, footer {
background-color: #20232a;
color: #61dafb;
padding: 20px;
text-align: center;
}
main {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
aside {
background-color: #282c34;
color: white;
padding: 15px;
margin-top: 20px;
}
footer {
background-color: #20232a;
color: #61dafb;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}
</style>