diff --git a/components/Blog/Layout.tsx b/components/Blog/Layout.tsx index eb66697..156a6a1 100644 --- a/components/Blog/Layout.tsx +++ b/components/Blog/Layout.tsx @@ -5,6 +5,7 @@ import Navigation from "./Navigation"; import styles from "../../styles/Blog/Blog.module.scss"; import socials from "../../data/socials"; +import Link from "next/link"; interface ILayoutProps { title?: string; @@ -29,11 +30,11 @@ const Layout: NextPage = ({ title, children }) => { - © 2022 Daniel Kluge + Copyright | {socialLinks.flatMap((social, i) => i !== 0 ? [|, social] : [social])} | - Contact + Contact diff --git a/pages/copyright.tsx b/pages/copyright.tsx new file mode 100644 index 0000000..f95f1a1 --- /dev/null +++ b/pages/copyright.tsx @@ -0,0 +1,22 @@ +import type { NextPage } from "next"; +import Layout from "../components/Blog/Layout"; + +/* +- MIT License +- MDI (Material Design Icons) by Google, Apache License 2.0 +- Simple Icons by Simple Icons Contributors, CC0 1.0 Universal +- SASS Logo by Sass team, CC BY-NC-SA 3.0 +*/ + +const Copyright: NextPage = () => { + return +

Copyright

+

Unless otherwise stated, all content on this website is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.

+

The logo and images of me are not licensed, so all rights are reserved.

+

The Material Design Icons used on this website are licensed under the Apache License 2.0.

+

The Simple Icons used on this website are licensed under the Creative Commons Zero v1.0 Universal.

+

The SASS Logo used on this website is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.

+
; +}; + +export default Copyright; \ No newline at end of file