diff --git a/app/components/Footer.tsx b/app/components/Footer.tsx new file mode 100644 index 0000000..e9bf72f --- /dev/null +++ b/app/components/Footer.tsx @@ -0,0 +1,59 @@ +import Link from "next/link"; + +const links = [ + { label: "Impressum", href: "/impressum" }, + { label: "Datenschutz", href: "/datenschutz" }, + { label: "AGB", href: "/agb" }, + { label: "Widerruf", href: "/widerruf" }, +]; + +export function Footer() { + return ( + + ); +} diff --git a/app/layout.tsx b/app/layout.tsx index 69193bb..909846a 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -28,7 +28,7 @@ const caveat = Caveat({ const lora = Lora({ variable: "--font-lora", subsets: ["latin"], - weight: ["600"], + weight: ["400", "600"], }); export const metadata: Metadata = { diff --git a/app/page.tsx b/app/page.tsx index ec2b0d6..a1d079b 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -4,16 +4,20 @@ import { Tools } from "./components/Tools"; import { Blog } from "./components/Blog"; import { About } from "./components/About"; import { Newsletter } from "./components/Newsletter"; +import { Footer } from "./components/Footer"; export default function Home() { return ( -
- - - - - - -
+ <> +
+ + + + + + +
+