generated from Seekra/repository-template
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
2aa6b3794c
|
|||
|
36bcf32a05
|
|||
|
eaa8968f64
|
@@ -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.
|
||||||
|
*/
|
||||||
+6
-6
@@ -37,11 +37,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"slogan": "Gebaut zum Suchen.",
|
"slogan": "Gebaut zum Suchen.",
|
||||||
|
|
||||||
"legal": {
|
"legal": {
|
||||||
"privacy": {
|
"privacy": {
|
||||||
"title": "Datenschutzerklärung"
|
"title": "Datenschutzerklärung"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
+5
-4
@@ -38,9 +38,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"slogan": "Built to search.",
|
"slogan": "Built to search.",
|
||||||
|
|
||||||
"legal": {
|
"legal": {
|
||||||
"privacy": {
|
"privacy": {
|
||||||
"title": "Privacy Policy"
|
"title": "Privacy Policy"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
+5
-5
@@ -38,10 +38,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"slogan": "Hecho para buscar.",
|
"slogan": "Hecho para buscar.",
|
||||||
|
|
||||||
"legal": {
|
"legal": {
|
||||||
"privacy": {
|
"privacy": {
|
||||||
"title": "Política de Privacidad"
|
"title": "Política de Privacidad"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
+6
-6
@@ -38,10 +38,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"slogan": "Conçu pour chercher.",
|
"slogan": "Conçu pour chercher.",
|
||||||
|
|
||||||
"legal": {
|
"legal": {
|
||||||
"privacy": {
|
"privacy": {
|
||||||
"title": "Politique de Confidentialité"
|
"title": "Politique de Confidentialité"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+5
-5
@@ -38,10 +38,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"slogan": "Costruito per cercare.",
|
"slogan": "Costruito per cercare.",
|
||||||
|
|
||||||
"legal": {
|
"legal": {
|
||||||
"privacy": {
|
"privacy": {
|
||||||
"title": "Politica di Privacy"
|
"title": "Politica di Privacy"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
+5
-5
@@ -38,10 +38,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"slogan": "Feito para pesquisar.",
|
"slogan": "Feito para pesquisar.",
|
||||||
|
|
||||||
"legal": {
|
"legal": {
|
||||||
"privacy": {
|
"privacy": {
|
||||||
"title": "Política de Privacidade"
|
"title": "Política de Privacidade"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|||||||
+3
-3
@@ -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'
|
||||||
}
|
}
|
||||||
@@ -83,4 +83,4 @@ router.afterEach(to => {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
export default router;
|
export default router;
|
||||||
|
|||||||
Reference in New Issue
Block a user