change footer links

This commit is contained in:
ogerly 2022-09-20 16:50:34 +02:00
parent a1292ef9ff
commit 5974ff7c24
2 changed files with 13 additions and 10 deletions

View File

@ -38,11 +38,14 @@ export default {
position: fixed;
bottom: 0px;
z-index: 10;
background-color: white;
background-color: #a6ff00;
width: 100%;
padding: 10px 10px;
box-shadow: 0px -6px 12px -4px rgba(0, 0, 0, 0.1);
}
.ds-footer a {
color: #6e8b87
}
.division-line {
margin-left: 0.2rem;
margin-right: 0.2rem;

View File

@ -3,7 +3,7 @@
import { defaultPageParamsPages } from '~/components/utils/InternalPages.js'
const ORGANIZATION = defaultPageParamsPages.ORGANIZATION.overwrite({
externalLink: 'https://ocelot.social', // if string is defined and not empty it's dominating
externalLink: 'https://yunite.org', // if string is defined and not empty it's dominating
internalPage: {
// footerIdent: 'site.made', // localized string identifier, if undefined default is used
@ -17,7 +17,7 @@ const ORGANIZATION = defaultPageParamsPages.ORGANIZATION.overwrite({
})
const DONATE = defaultPageParamsPages.DONATE.overwrite({
// we use 'ocelot-social.herokuapp.com' at the moment, because redirections of 'ocelot.social' subpages are not working correctly
externalLink: 'https://ocelot-social.herokuapp.com/donations', // if string is defined and not empty it's dominating
externalLink: 'https://yunite.org/brand-guidelines/', // if string is defined and not empty it's dominating
internalPage: {
// footerIdent: 'site.donate', // localized string identifier, if undefined default is used
@ -31,7 +31,7 @@ const DONATE = defaultPageParamsPages.DONATE.overwrite({
})
const IMPRINT = defaultPageParamsPages.IMPRINT.overwrite({
// we use 'ocelot-social.herokuapp.com' at the moment, because redirections of 'ocelot.social' subpages are not working correctly
externalLink: 'https://ocelot-social.herokuapp.com/imprint', // if string is defined and not empty it's dominating
externalLink: 'https://yunite.org/impressum/', // if string is defined and not empty it's dominating
internalPage: {
// footerIdent: 'site.imprint', // localized string identifier, if undefined default is used
@ -70,7 +70,7 @@ const CODE_OF_CONDUCT = defaultPageParamsPages.CODE_OF_CONDUCT.overwrite({
},
})
const DATA_PRIVACY = defaultPageParamsPages.DATA_PRIVACY.overwrite({
// externalLink: null, // if string is defined and not empty it's dominating
externalLink: 'https://yunite.org/datenschutz/', // if string is defined and not empty it's dominating
internalPage: {
// footerIdent: 'site.data-privacy', // localized string identifier, if undefined default is used
@ -125,12 +125,12 @@ export default {
FOOTER_LINK_LIST: [
ORGANIZATION,
TERMS_AND_CONDITIONS,
CODE_OF_CONDUCT,
// TERMS_AND_CONDITIONS,
// CODE_OF_CONDUCT,
DATA_PRIVACY,
FAQ,
DONATE,
SUPPORT,
// FAQ,
// DONATE,
// SUPPORT,
IMPRINT,
],
}