diff --git a/lawfirm-demos/demo-1/app/Links.ts b/lawfirm-demos/demo-1/app/Links.ts new file mode 100644 index 0000000..9ed2e4a --- /dev/null +++ b/lawfirm-demos/demo-1/app/Links.ts @@ -0,0 +1,8 @@ +const Links = { + home: '/', + about: '/ueber-uns/', + imprint: '/impressum/', + privacy: '/datenschutz/', +}; + +export default Links; diff --git a/lawfirm-demos/demo-1/app/privacy/page.tsx b/lawfirm-demos/demo-1/app/datenschutz/page.tsx similarity index 100% rename from lawfirm-demos/demo-1/app/privacy/page.tsx rename to lawfirm-demos/demo-1/app/datenschutz/page.tsx diff --git a/lawfirm-demos/demo-1/app/imprint/page.tsx b/lawfirm-demos/demo-1/app/impressum/page.tsx similarity index 100% rename from lawfirm-demos/demo-1/app/imprint/page.tsx rename to lawfirm-demos/demo-1/app/impressum/page.tsx diff --git a/lawfirm-demos/demo-1/app/about/page.tsx b/lawfirm-demos/demo-1/app/ueber-uns/page.tsx similarity index 100% rename from lawfirm-demos/demo-1/app/about/page.tsx rename to lawfirm-demos/demo-1/app/ueber-uns/page.tsx diff --git a/lawfirm-demos/demo-1/components/Footer.tsx b/lawfirm-demos/demo-1/components/Footer.tsx index 72eb784..df2a412 100644 --- a/lawfirm-demos/demo-1/components/Footer.tsx +++ b/lawfirm-demos/demo-1/components/Footer.tsx @@ -1,4 +1,5 @@ import Link from 'next/link'; +import Links from "@/app/Links"; export default function Footer() { return ( @@ -9,8 +10,10 @@ export default function Footer() {
© {new Date().getFullYear()} Kanzlei Mustermann. Alle Rechte vorbehalten.