diff --git a/src/components/Footer/Footer.scss b/src/components/Footer/Footer.scss index 01b0218..addaaae 100644 --- a/src/components/Footer/Footer.scss +++ b/src/components/Footer/Footer.scss @@ -158,6 +158,11 @@ $textcol_scuro: darkblue; letter-spacing: 0.078rem; } +.copyrights { + color: gray; + letter-spacing: 0.078rem; +} + .mycontacts_title { text-shadow: 0.125rem 0.125rem 0.125rem #555; font-weight: bold; diff --git a/src/components/Footer/Footer.ts b/src/components/Footer/Footer.ts index 84bb85e..92ffbb6 100644 --- a/src/components/Footer/Footer.ts +++ b/src/components/Footer/Footer.ts @@ -31,6 +31,10 @@ export default class Footer extends Vue { return db_data.URL_FACEBOOK } + get InstagramPage() { + return db_data.URL_INSTAGRAM + } + get static_data(){ return static_data } diff --git a/src/components/Footer/Footer.vue b/src/components/Footer/Footer.vue index 05effc2..7694312 100644 --- a/src/components/Footer/Footer.vue +++ b/src/components/Footer/Footer.vue @@ -10,11 +10,13 @@ - + +
+

+
+
@@ -29,6 +31,9 @@ + + + diff --git a/src/model/GlobalStore.ts b/src/model/GlobalStore.ts index 025b633..4986a05 100644 --- a/src/model/GlobalStore.ts +++ b/src/model/GlobalStore.ts @@ -133,6 +133,7 @@ export interface ITimeLineEntry { image4?: string side: string link_url?: string + link_url_lang?: IAllLang link_text?: IAllLang }