44 lines
867 B
TypeScript
44 lines
867 B
TypeScript
import React from "react";
|
|
|
|
export const EmailFooter = () => {
|
|
return (
|
|
<td style={{ textAlign: "center", paddingTop: "20px" }}>
|
|
<a
|
|
href="https://virtualairrescue.com/impressum"
|
|
style={{
|
|
padding: "10px",
|
|
textDecoration: "none",
|
|
borderRadius: "20px",
|
|
color: "#011936",
|
|
}}
|
|
>
|
|
Impressum
|
|
</a>
|
|
<span style={{ margin: "0 10px" }}>|</span>
|
|
<a
|
|
href="https://virtualairrescue.com/datenschutz"
|
|
style={{
|
|
padding: "10px",
|
|
textDecoration: "none",
|
|
borderRadius: "20px",
|
|
color: "#011936",
|
|
}}
|
|
>
|
|
Datenschutzerklärung
|
|
</a>
|
|
<span style={{ margin: "0 10px" }}>|</span>
|
|
<a
|
|
href="https://docs.virtualairrescue.com/"
|
|
style={{
|
|
padding: "10px",
|
|
textDecoration: "none",
|
|
borderRadius: "20px",
|
|
color: "#011936",
|
|
}}
|
|
>
|
|
Knowledgebase
|
|
</a>
|
|
</td>
|
|
);
|
|
};
|