Created
November 26, 2018 20:22
-
-
Save andyfaizan/b615a0af38157007d5a65ba9c64046df to your computer and use it in GitHub Desktop.
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
import React, { Component } from 'react'; | |
import { Link } from 'react-router-dom'; | |
import '../App.css'; | |
//media | |
import Close from './../img/icons/close_orange.svg'; | |
export default class Oems extends Component { | |
componentDidMount() { | |
window.scrollTo(0, 0); | |
}; | |
render() { | |
return ( | |
<div className={"subpageBody"}> | |
<div className={"tempSpacer"}> </div> | |
<div className="subpageContainer"> | |
<div className="impressumContent"> | |
<h3>Impressum</h3> | |
<p className="impressumHeading"> | |
<span>Schmiede.ONE GmbH & Co.KG</span> | |
<span className="impressumOneLine">Hunteburger Str. 32</span> | |
<span className="impressumOneLine">49401 Damme</span> | |
<span className="impressumOneLine">Telefon +49 5491 666-0</span> | |
<span className="impressumOneLine">Telefax +49 5491 666-2298</span> | |
<span className="impressumOneLine">E-Mail: [email protected]</span> | |
<span className="impressumOneLine">Internet: www.schmiede.one</span> | |
</p> | |
<p className="impressumHeading">Umsatzsteuer-Identifikationsnummer:<span className="impressumOneLine">Wird zugeteilt Rechtsform: Gesellschaft mit beschränkter Haftung, Sitz Damme, Amtsgericht Oldenburg HR A 205333 Persönliche Gesellschafterin: Schmiede.ONE Beteiligungs GmbH, Sitz Damme, Amtsgericht Oldenburg HR B 211812.</span></p> | |
<p> | |
<span className="impressumHeading">Geschäftsführer:</span> | |
<span className="impressumOneLine">Herr Christoph Grimme </span> | |
<span className="impressumOneLine">Herr Alexander Langer</span> | |
</p> | |
</div> | |
<div className="impressumClose"><Link to="../" title="home"><img src={Close} alt="close" title="close" /></Link></div> | |
</div> | |
</div> | |
)} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment