Made Imprint optional

This commit is contained in:
Bastian Meissner 2020-09-08 15:49:11 +02:00
parent a8f2136736
commit 8614b71e94

View file

@ -88,119 +88,70 @@ const Imprint = () => {
} = useImprintData(); } = useImprintData();
return ( return (
<ListContainer> <>
<Hl>About</Hl> {error ? (
<ItemList> <ListContainer>
<ItemContainer> <Hl>About</Hl>
<SHl>Imprint</SHl> <ItemList>
<Modal element="text" text="View Imprint"> <ItemContainer>
<Headline>Legal Disclosure</Headline> <SHl>Imprint</SHl>
{error && <ErrorMessage>{error}</ErrorMessage>} <Modal element="text" text="View Imprint">
<ModalSubHeadline> <Headline>Legal Disclosure</Headline>
Information in accordance with section 5 TMG {error && <ErrorMessage>{error}</ErrorMessage>}
</ModalSubHeadline> <ModalSubHeadline>
{!error && ( Information in accordance with section 5 TMG
<> </ModalSubHeadline>
<Link href={name.link}>{name.text}</Link> {!error && (
<Link href={address.link}>{address.text}</Link> <>
<Link href={phone.link}>{phone.text}</Link> <Link href={name.link}>{name.text}</Link>
<Link href={email.link}>{email.text}</Link> <Link href={address.link}>{address.text}</Link>
<Link href={url.link}>{url.text}</Link> <Link href={phone.link}>{phone.text}</Link>
</> <Link href={email.link}>{email.text}</Link>
)} <Link href={url.link}>{url.text}</Link>
<Headline>Disclaimer</Headline> </>
<ModalSubHeadline>Accountability for content</ModalSubHeadline> )}
<Text> <Headline>Disclaimer</Headline>
The contents of our pages have been created with the utmost care. <ModalSubHeadline>Accountability for content</ModalSubHeadline>
However, we cannot guarantee the contents' accuracy, completeness <Text>
or topicality. According to statutory provisions, we are The contents of our pages have been created with the utmost
furthermore responsible for our own content on these web pages. In care. However, we cannot guarantee the contents' accuracy,
this matter, please note that we are not obliged to monitor the completeness or topicality. According to statutory provisions,
transmitted or saved information of third parties, or investigate we are furthermore responsible for our own content on these
circumstances pointing to illegal activity. Our obligations to web pages. In this matter, please note that we are not obliged
remove or block the use of information under generally applicable to monitor the transmitted or saved information of third
laws remain unaffected by this as per §§ 8 to 10 of the Telemedia parties, or investigate circumstances pointing to illegal
Act (TMG). activity. Our obligations to remove or block the use of
</Text> information under generally applicable laws remain unaffected
<ModalSubHeadline>Accountability for links</ModalSubHeadline> by this as per §§ 8 to 10 of the Telemedia Act (TMG).
<Text> </Text>
Responsibility for the content of external links (to web pages of <ModalSubHeadline>Accountability for links</ModalSubHeadline>
third parties) lies solely with the operators of the linked pages. <Text>
No violations were evident to us at the time of linking. Should Responsibility for the content of external links (to web pages
any legal infringement become known to us, we will remove the of third parties) lies solely with the operators of the linked
respective link immediately. pages. No violations were evident to us at the time of
</Text> linking. Should any legal infringement become known to us, we
<ModalSubHeadline>Copyright</ModalSubHeadline> will remove the respective link immediately.
<Text> </Text>
Our web pages and their contents are subject to German copyright <ModalSubHeadline>Copyright</ModalSubHeadline>
law. Unless expressly permitted by law, every form of utilizing, <Text>
reproducing or processing works subject to copyright protection on Our web pages and their contents are subject to German
our web pages requires the prior consent of the respective owner copyright law. Unless expressly permitted by law, every form
of the rights. Individual reproductions of a work are only allowed of utilizing, reproducing or processing works subject to
for private use. The materials from these pages are copyrighted copyright protection on our web pages requires the prior
and any unauthorized use may violate copyright laws. consent of the respective owner of the rights. Individual
</Text> reproductions of a work are only allowed for private use. The
</Modal> materials from these pages are copyrighted and any
</ItemContainer> unauthorized use may violate copyright laws.
</ItemList> </Text>
</ListContainer> </Modal>
</ItemContainer>
</ItemList>
</ListContainer>
) : (
<></>
)}
</>
); );
}; };
/*
<ImprintContainer>
<Hl>About</Hl>
<ModalContainer>
<SHl>Imprint</SHl>
<Modal element="text" text="View Imprint">
<Headline>Legal Disclosure</Headline>
{error && <ErrorMessage>{error}</ErrorMessage>}
<ModalSubHeadline>
Information in accordance with section 5 TMG
</ModalSubHeadline>
{!error && (
<>
<Link href={name.link}>{name.text}</Link>
<Link href={address.link}>{address.text}</Link>
<Link href={phone.link}>{phone.text}</Link>
<Link href={email.link}>{email.text}</Link>
<Link href={url.link}>{url.text}</Link>
</>
)}
<Headline>Disclaimer</Headline>
<ModalSubHeadline>Accountability for content</ModalSubHeadline>
<Text>
The contents of our pages have been created with the utmost care.
However, we cannot guarantee the contents' accuracy, completeness or
topicality. According to statutory provisions, we are furthermore
responsible for our own content on these web pages. In this matter,
please note that we are not obliged to monitor the transmitted or
saved information of third parties, or investigate circumstances
pointing to illegal activity. Our obligations to remove or block the
use of information under generally applicable laws remain unaffected
by this as per §§ 8 to 10 of the Telemedia Act (TMG).
</Text>
<ModalSubHeadline>Accountability for links</ModalSubHeadline>
<Text>
Responsibility for the content of external links (to web pages of
third parties) lies solely with the operators of the linked pages.
No violations were evident to us at the time of linking. Should any
legal infringement become known to us, we will remove the respective
link immediately.
</Text>
<ModalSubHeadline>Copyright</ModalSubHeadline>
<Text>
Our web pages and their contents are subject to German copyright
law. Unless expressly permitted by law, every form of utilizing,
reproducing or processing works subject to copyright protection on
our web pages requires the prior consent of the respective owner of
the rights. Individual reproductions of a work are only allowed for
private use. The materials from these pages are copyrighted and any
unauthorized use may violate copyright laws.
</Text>
</Modal>
</ModalContainer>
</ImprintContainer>
*/
export default Imprint; export default Imprint;