Created the footer.jsx routes

This commit is contained in:
Mathias Wagner 2023-07-09 00:28:26 +02:00
parent ccdb3e3971
commit 47340ff342
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,17 @@
export default [
{
path: "/imprint",
element: <h2>Impressum</h2>,
name: "Impressum"
},
{
path: "/privacy",
element: <h2>Datenschutz</h2>,
name: "Datenschutzerklärung"
},
{
path: "/tos",
element: <h2>Nutzungsbedingungen</h2>,
name: "Nutzungsbedingungen"
}
];