From cfbe29413037a1117d9885f4661b0f26c8e81f5e Mon Sep 17 00:00:00 2001 From: nofurtherinformation Date: Wed, 24 Jul 2024 12:01:36 -0500 Subject: [PATCH] Footer --- app/layout.tsx | 4 ++- components/AutoComplete/AutoComplete.tsx | 11 +++---- components/Footer/Client.tsx | 23 ++++++++++++++ components/Footer/Renderer.tsx | 38 +++++++++++++++++++++++ components/Footer/index.tsx | 16 ++++++++++ components/Footer/types.ts | 1 + components/Pages/Home/Renderer.tsx | 8 ++--- content/nav/footer-nav.mdx | 19 ++++++++++++ content/page/footer.mdx | 18 +++++++++++ package.json | 1 + public/uploads/Artboard 1.png | Bin 0 -> 15440 bytes public/uploads/dsilogo.png | Bin 0 -> 18456 bytes public/uploads/rafi-logo.png | Bin 0 -> 94574 bytes styles/global.css | 3 ++ 14 files changed, 131 insertions(+), 11 deletions(-) create mode 100644 components/Footer/Client.tsx create mode 100644 components/Footer/Renderer.tsx create mode 100644 components/Footer/index.tsx create mode 100644 components/Footer/types.ts create mode 100644 content/page/footer.mdx create mode 100644 public/uploads/Artboard 1.png create mode 100644 public/uploads/dsilogo.png create mode 100644 public/uploads/rafi-logo.png diff --git a/app/layout.tsx b/app/layout.tsx index 62ba83e..5476dae 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,8 +1,9 @@ import { Antonio, Libre_Baskerville, Open_Sans } from "next/font/google" -import Nav from "components/Nav" import "styles/tailwind.css" import "styles/global.css" +import Footer from "components/Footer" +import Nav from "components/Nav" import { WipTag } from "components/WipTag" // import Transitions, { Animate } from "components/Transition" @@ -38,6 +39,7 @@ export default function RootLayout({ children }: { children: React.ReactNode }) {/* */} {/* */} +