3 Commits

10 changed files with 50 additions and 34 deletions
+15
View File
@@ -0,0 +1,15 @@
/*
Copyright 2026 Seekra
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
+1
View File
@@ -38,6 +38,7 @@
} }
}, },
"slogan": "Built to search.", "slogan": "Built to search.",
"legal": { "legal": {
"privacy": { "privacy": {
"title": "Privacy Policy" "title": "Privacy Policy"
+2 -2
View File
@@ -21,7 +21,7 @@ import SearchView from '../views/SearchView.vue';
import SearchResultsView from '@/features/search/views/SearchResultsView.vue'; import SearchResultsView from '@/features/search/views/SearchResultsView.vue';
import SettingsView from '@/features/settings/views/SettingsView.vue'; import SettingsView from '@/features/settings/views/SettingsView.vue';
import NotFound from '../views/NotFound.vue'; import NotFound from '../views/NotFound.vue';
import PrivacyPolicy from '@/views/legal/PrivacyPolicy.vue'; import PrivacyPolicyView from '@/features/legal/views/PrivacyPolicyView.vue';
const routes = [ const routes = [
{ {
@@ -56,7 +56,7 @@ const routes = [
{ {
path: '/privacy', path: '/privacy',
name: 'privacyPolicy', name: 'privacyPolicy',
component: PrivacyPolicy, component: PrivacyPolicyView,
meta: { meta: {
title: () => 'Privacy Policy' title: () => 'Privacy Policy'
} }