Skip to content
This repository has been archived by the owner on Jul 4, 2024. It is now read-only.

Commit

Permalink
Rename imprint
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Willems committed Mar 22, 2020
1 parent dc5c034 commit 7b71235
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
3 changes: 2 additions & 1 deletion src/components/Card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ export default {
padding: 30px 20px;
margin: 0 5px;
text-align: center;
height: 400px;
min-height: 400px;
@include shadow(30);
position: relative;
}
</style>
5 changes: 4 additions & 1 deletion src/components/Navigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<nav class="navigation">
<ul class="navigation__list">
<li class="navigation__list-item">
<router-link to="/impress">{{ $t('navigation.imprint') }}</router-link>
<router-link to="/imprint">{{ $t('navigation.imprint') }}</router-link>
</li>
<li class="navigation__list-item">
<a href="//wirvsvirushackathon.org/" class="navigation__link">
Expand Down Expand Up @@ -31,6 +31,9 @@ export default {
display: flex;
justify-content: center;
margin-top: 50px;
position: absolute;
width: 100%;
bottom: 20px;
@media #{$mobile} {
font-size: 24px;
Expand Down
2 changes: 1 addition & 1 deletion src/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"questions": "Fragen",
"support": "Unterstüzung"
},
"impress": {
"imprint": {
"intro": "Intro"
}
}
6 changes: 3 additions & 3 deletions src/router/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ const routes = [
],
},
{
path: '/impress',
name: 'Impress',
component: () => import(/* webpackChunkName: "impress" */ '../views/Impress.vue'),
path: '/imprint',
name: 'Imprint',
component: () => import(/* webpackChunkName: "imprint" */ '../views/Imprint.vue'),
},
];

Expand Down
2 changes: 1 addition & 1 deletion src/views/Impress.vue → src/views/Imprint.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="content__logo logo">
<img class="logo__image" src="/img/icons/landing_graphic.svg" :alt="$t('meta.title')"/>
</div>
<div class="content__text">{{ $t('impress.intro') }}</div>
<div class="content__text">{{ $t('imprint.intro') }}</div>
</div>
<Card>
<div class="users">
Expand Down

0 comments on commit 7b71235

Please sign in to comment.