diff --git a/src/router/index.js b/src/router/index.js
index e3caa49..2a2587b 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -21,6 +21,7 @@ import SearchView from '../views/SearchView.vue';
import SearchResultsView from '@/features/search/views/SearchResultsView.vue';
import SettingsView from '@/features/settings/views/SettingsView.vue';
import NotFound from '../views/NotFound.vue';
+import PrivacyPolicy from '@/views/legal/PrivacyPolicy.vue';
const routes = [
{
@@ -52,6 +53,15 @@ const routes = [
name: 'notFound',
component: NotFound
},
+ {
+ path: '/privacy',
+ name: 'privacyPolicy',
+ component: PrivacyPolicy,
+ meta: {
+ title: () => 'Privacy Policy'
+ }
+ },
+
];
const router = createRouter({
diff --git a/src/views/legal/PrivacyPolicy.vue b/src/views/legal/PrivacyPolicy.vue
index 347cfbb..e689cf5 100644
--- a/src/views/legal/PrivacyPolicy.vue
+++ b/src/views/legal/PrivacyPolicy.vue
@@ -1,4 +1,5 @@
-/*
+```vue
+
+
+
+
+
+
+
+
+
\ No newline at end of file