-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6997b45
commit 9bc5d09
Showing
9 changed files
with
96 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import React from 'react'; | ||
import { Link } from 'react-router-dom'; | ||
import { Grid, ListItem, ListIcon, ListContent, List } from 'semantic-ui-react'; | ||
import { I18n } from 'react-i18next'; | ||
|
||
import { licenseYear } from '../../../config.json'; | ||
|
||
export default () => ( | ||
( | ||
<div> | ||
<Grid className="page default-grid impressumSection" id="impressumAnchor"> | ||
<List> | ||
<ListItem> | ||
<ListContent><I18n>{t => t('contact')}</I18n></ListContent> | ||
</ListItem> | ||
<ListItem> | ||
<ListContent /> | ||
</ListItem> | ||
<ListItem> | ||
<ListIcon name="user" /> | ||
<ListContent>Chantal Largier</ListContent> | ||
</ListItem> | ||
<ListItem> | ||
<ListIcon name="marker" /> | ||
<ListContent>Bahnhofplatz 12</ListContent> | ||
</ListItem> | ||
<ListItem> | ||
<ListIcon /> | ||
<ListContent>6440 Brunnen</ListContent> | ||
</ListItem> | ||
<ListItem> | ||
<ListIcon name="mail" /> | ||
<ListContent> | ||
<a href="mailto:[email protected]">[email protected]</a> | ||
</ListContent> | ||
</ListItem> | ||
</List> | ||
</Grid> | ||
<Grid className="page default-grid"> | ||
<Grid.Row> | ||
<Grid.Column textAlign="center"> | ||
<p> | ||
<span>©{licenseYear} chantallargier.com | </span> | ||
<Link to="/admin" className="link">admin</Link> | ||
</p> | ||
</Grid.Column> | ||
</Grid.Row> | ||
</Grid> | ||
</div> | ||
) | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"licenseYear": 2022 | ||
"licenseYear": 2024 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters