mirror of
https://github.com/Rakantor/personal-portfolio.git
synced 2025-12-17 11:36:32 +01:00
Refactor variables
This commit is contained in:
@@ -28,7 +28,7 @@
|
||||
outlined
|
||||
color="primary"
|
||||
prepend-icon="mdi-email-outline"
|
||||
:href="`mailto:<${$myEmail}>`"
|
||||
:href="`mailto:<${$config.public.myEmail}>`"
|
||||
>
|
||||
Contact
|
||||
</v-btn>
|
||||
@@ -46,7 +46,7 @@
|
||||
<img src="~/assets/avatar_blueish.png" width="55" />
|
||||
</v-avatar>
|
||||
</template>
|
||||
<!-- v-app-bar-title class="text-subtitle-1" v-text="$myName" /-->
|
||||
<!-- v-app-bar-title class="text-subtitle-1" v-text="$config.public.myName" /-->
|
||||
<v-spacer />
|
||||
<v-app-bar-nav-icon
|
||||
v-if="smAndDown"
|
||||
@@ -56,7 +56,7 @@
|
||||
<v-btn :ripple="false" to="/">{{ $t('headerHome') }}</v-btn>
|
||||
<v-btn :ripple="false" to="/bio">{{ $t('headerAbout') }}</v-btn>
|
||||
<v-btn :ripple="false" to="/portfolio">{{ $t('headerWork') }}</v-btn>
|
||||
<v-btn :ripple="false" :href="`mailto:<${$myEmail}>`">{{ $t('headerContact') }}</v-btn>
|
||||
<v-btn :ripple="false" :href="`mailto:<${$config.public.myEmail}>`">{{ $t('headerContact') }}</v-btn>
|
||||
</v-btn-toggle>
|
||||
</v-app-bar>
|
||||
<v-main>
|
||||
@@ -86,7 +86,7 @@
|
||||
</v-col>
|
||||
<v-col cols="4" class="text-center my-auto">
|
||||
<span class="text-caption text-no-wrap">
|
||||
© {{ new Date().getFullYear() }} {{ $myName }}
|
||||
© {{ new Date().getFullYear() }} {{ $config.public.myName }}
|
||||
</span>
|
||||
</v-col>
|
||||
<v-col cols="4" class="my-auto" :class="$vuetify.display.mobile ? 'text-right' : 'text-center'">
|
||||
|
||||
@@ -6,9 +6,9 @@
|
||||
</v-card-item>
|
||||
<v-card-text>
|
||||
<strong>Medieninhaber:</strong><br />
|
||||
{{ $myName }}<br />
|
||||
{{ $config.public.myName }}<br />
|
||||
Wien, Österreich<br />
|
||||
{{ $myEmail }}<br />
|
||||
{{ $config.public.myEmail }}<br />
|
||||
</v-card-text>
|
||||
<v-card-text>
|
||||
Zweck dieser Website: Präsentation des Medieninhabers.
|
||||
@@ -46,11 +46,11 @@
|
||||
<p>Sollten Sie Fragen zum Datenschutz oder zur Verarbeitung personenbezogener Daten haben, finden Sie nachfolgend die
|
||||
Kontaktdaten der verantwortlichen Person bzw. Stelle:<br />
|
||||
<span style="font-weight: 400">
|
||||
{{ $myName }}<br />
|
||||
{{ $config.public.myName }}<br />
|
||||
Wien, Österreich
|
||||
</span>
|
||||
<br />
|
||||
E-Mail: <a :href="`mailto:${$myEmail}`">{{ $myEmail }}</a>
|
||||
E-Mail: <a :href="`mailto:${$config.public.myEmail}`">{{ $config.public.myEmail }}</a>
|
||||
</p>
|
||||
<h2 id="rechte-dsgvo">Rechte laut Datenschutz-Grundverordnung</h2>
|
||||
<p>Gemäß Artikel 13, 14 DSGVO informieren wir Sie über die folgenden Rechte, die Ihnen zustehen, damit es zu einer
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
variant="outlined"
|
||||
color="primary"
|
||||
prepend-icon="mdi-email-outline"
|
||||
:href="`mailto:<${$myEmail}>`"
|
||||
:href="`mailto:<${$config.public.myEmail}>`"
|
||||
>
|
||||
{{ $t('getInTouch') }}
|
||||
</v-btn>
|
||||
|
||||
Reference in New Issue
Block a user