From ab09a75a926162b59e5c8b85637f5badd106953c Mon Sep 17 00:00:00 2001 From: Adam Joseph Arling Date: Mon, 21 Aug 2023 09:25:04 -0500 Subject: [PATCH 1/3] Add trademark info to the footer. Upgrade footer layout as well --- components/layout/Footer.jsx | 100 ++++++++++++++++++++++++++--------- 1 file changed, 76 insertions(+), 24 deletions(-) diff --git a/components/layout/Footer.jsx b/components/layout/Footer.jsx index e0c1240b2..06b03a4b6 100644 --- a/components/layout/Footer.jsx +++ b/components/layout/Footer.jsx @@ -1,32 +1,84 @@ -import React from "react"; -import { SocialIcon } from "react-social-icons"; - -const SocialIconWrapper = ({ Component, ...restProps }) => { - return ; +const navigation = { + main: [ + { name: "Contact Us", href: "/get-started/contact-us" }, + { name: "Getting Started", href: "/get-started/getting-started" }, + { + name: "Examples and Demos", + href: "/repository-solutions/examples-and-demos", + }, + { name: "FAQ", href: "/the-community/faq" }, + { name: "News and Events", href: "/news-and-events" }, + ], + social: [ + { + name: "Twitter", + href: "https://twitter.com/SamveraRepo", + icon: (props) => ( + + + + ), + }, + { + name: "GitHub", + href: "https://github.com/samvera", + icon: (props) => ( + + + + ), + }, + ], }; -export default function Footer() { - const today = new Date(); +const year = new Date().getFullYear(); +export default function Footer() { return ( -