mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-05 13:02:54 +00:00
27 lines
672 B
JavaScript
27 lines
672 B
JavaScript
import {SCAboutPageContentType} from '@openstapps/core';
|
|
|
|
/** @type {import('@openstapps/core').SCAboutPage} */
|
|
export const imprint = {
|
|
title: 'Impressum',
|
|
content: [
|
|
{
|
|
// language=Markdown
|
|
value: `[Impressum der Johann Wolfgang Goethe-Universität Frankfurt am Main](https://www.uni-frankfurt.de/impressum)`,
|
|
translations: {
|
|
en: {
|
|
// language=Markdown
|
|
value: `[Imprint of the Goethe University Frankfurt](https://www.uni-frankfurt.de/impressum)`,
|
|
},
|
|
},
|
|
type: SCAboutPageContentType.MARKDOWN,
|
|
},
|
|
],
|
|
translations: {
|
|
en: {
|
|
title: 'Imprint',
|
|
},
|
|
},
|
|
};
|
|
|
|
export default imprint;
|