Skip to content

Commit 5ba6372

Browse files
committed
add privacy-policy and disclaimer
1 parent 3b05f3a commit 5ba6372

File tree

5 files changed

+496
-15
lines changed

5 files changed

+496
-15
lines changed

index.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,27 @@ <h4>
115115
</ol> -->
116116

117117
</div>
118+
119+
<hr class="gap">
120+
121+
<footer class="footer">
122+
<div class="container">
123+
124+
<p class="pull-right text-right">
125+
<a href="https://www.facebook.com/showmaniac/" target="_blank" rel="noopener" aria-label="Go to Facebook page">
126+
<i class="fa fa-fw fa-facebook"></i>
127+
</a>
128+
</p>
129+
130+
<p>
131+
&copy; showmaniac. All rights reserved.
132+
<a href="http://bettysteger.com" target="_blank" rel="noopener">bettysteger.com</a><br>
133+
<small><a href="/disclaimer">Disclaimer</a></small>&nbsp;
134+
<small><a href="/privacy-policy">Privacy Policy</a></small>
135+
</p>
136+
</div>
137+
</footer>
138+
118139
<!-- Move font loading here -->
119140
<link href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400&display=swap" rel="stylesheet">
120141
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

src/router/index.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import { createRouter, createWebHistory } from 'vue-router'
22
import HomeView from '../views/HomeView.vue'
3+
import PrivacyPolicyView from '../views/PrivacyPolicyView.vue'
4+
import DisclaimerView from '../views/DisclaimerView.vue'
35

46
const router = createRouter({
57
history: createWebHistory(import.meta.env.BASE_URL),
@@ -14,6 +16,17 @@ const router = createRouter({
1416
name: 'tv',
1517
component: HomeView
1618
},
19+
{
20+
path: '/privacy-policy',
21+
name: 'privacy-policy',
22+
component: PrivacyPolicyView
23+
},
24+
{
25+
path: '/disclaimer',
26+
name: 'disclaimer',
27+
component: DisclaimerView
28+
},
29+
1730
// {
1831
// path: '/popular/:page',
1932
// name: 'popular',

src/views/AboutView.vue

Lines changed: 0 additions & 15 deletions
This file was deleted.

src/views/DisclaimerView.vue

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<template>
2+
<a href="/">back</a>
3+
4+
<h2>Content</h2>
5+
<p>
6+
The information contained in this website is for general information purposes only. The information is provided by tvmaze.com and while we endeavour to keep the information up to date and correct, we make no representations or warranties of any kind, express or implied, about the completeness, accuracy, reliability, suitability or availability with respect to the website or the information, products, services, or related graphics contained on the website for any purpose. Any reliance you place on such information is therefore strictly at your own risk.
7+
</p>
8+
<h2>Data Loss</h2>
9+
<p>
10+
In no event will we be liable for any loss or damage including without limitation, indirect or consequential loss or damage, or any loss or damage whatsoever arising from loss of data or profits arising out of, or in connection with, the use of this website.
11+
</p>
12+
<h2>Liability for links</h2>
13+
<p>
14+
Through this website you are able to link to other websites which are not under the control of showmaniac. We have no control over the nature, content and availability of those sites. The inclusion of any links does not necessarily imply a recommendation or endorse the views expressed within them.
15+
</p>
16+
<h2>Availability</h2>
17+
<p>
18+
Every effort is made to keep the website up and running smoothly. However, showmaniac takes no responsibility for, and will not be liable for, the website being temporarily unavailable due to technical issues beyond our control.
19+
</p>
20+
</template>

0 commit comments

Comments
 (0)