From ad874bf7c285910930ddbb236114c5a7ccb38e8d Mon Sep 17 00:00:00 2001 From: Ingrid04 Date: Thu, 22 Feb 2024 19:53:25 -0500 Subject: [PATCH 1/4] EIN added in footer --- src/layouts/footers/footer-01.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/layouts/footers/footer-01.tsx b/src/layouts/footers/footer-01.tsx index 2567a4db0..5e719ac49 100644 --- a/src/layouts/footers/footer-01.tsx +++ b/src/layouts/footers/footer-01.tsx @@ -50,6 +50,9 @@ const Footer01 = ({ mode }: TProps) => { All Rights Reserved

+

+ Vets Who Code is a registered 501(c)(3) nonprofit under EIN 86-2122804. Donations are tax-deductible to the fullest extent allowable under the law. +

); From c086abf9681448555d4f14067789ea7ffb08b6be Mon Sep 17 00:00:00 2001 From: Ingrid04 Date: Thu, 22 Feb 2024 20:13:02 -0500 Subject: [PATCH 2/4] fixing margin-top for ein footer --- src/layouts/footers/footer-01.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/footers/footer-01.tsx b/src/layouts/footers/footer-01.tsx index 5e719ac49..363722456 100644 --- a/src/layouts/footers/footer-01.tsx +++ b/src/layouts/footers/footer-01.tsx @@ -50,7 +50,7 @@ const Footer01 = ({ mode }: TProps) => { All Rights Reserved

-

+

Vets Who Code is a registered 501(c)(3) nonprofit under EIN 86-2122804. Donations are tax-deductible to the fullest extent allowable under the law.

From 6ddc3043fc7e2948385b1eb2fb68339eba6d3a7f Mon Sep 17 00:00:00 2001 From: Ingrid04 Date: Mon, 11 Mar 2024 20:00:38 -0400 Subject: [PATCH 3/4] initial --- src/containers/course-details/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/containers/course-details/index.tsx b/src/containers/course-details/index.tsx index 0f944393d..98989487b 100644 --- a/src/containers/course-details/index.tsx +++ b/src/containers/course-details/index.tsx @@ -19,7 +19,9 @@ type TProps = { const CourseDetails = ({ data: { course, curriculum, instructor }, }: TProps) => { + return ( + <>
@@ -55,6 +57,8 @@ const CourseDetails = ({
+ + ); }; From 5d0779251b6ab7e24de3fd1d245ab03dd4694760 Mon Sep 17 00:00:00 2001 From: Ingrid04 Date: Mon, 11 Mar 2024 20:46:39 -0400 Subject: [PATCH 4/4] fixing headers --- src/containers/course-details/index.tsx | 3 +-- src/pages/curriculum/[slug].tsx | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/containers/course-details/index.tsx b/src/containers/course-details/index.tsx index 98989487b..806e5ccfd 100644 --- a/src/containers/course-details/index.tsx +++ b/src/containers/course-details/index.tsx @@ -21,7 +21,7 @@ const CourseDetails = ({ }: TProps) => { return ( - <> + <>
@@ -57,7 +57,6 @@ const CourseDetails = ({
- ); }; diff --git a/src/pages/curriculum/[slug].tsx b/src/pages/curriculum/[slug].tsx index 5ef8d0c19..43e5061bc 100644 --- a/src/pages/curriculum/[slug].tsx +++ b/src/pages/curriculum/[slug].tsx @@ -1,6 +1,6 @@ import type { GetStaticPaths, NextPage } from "next"; import SEO from "@components/seo/page-seo"; -import Layout01 from "@layout/layout-02"; +import Layout01 from "@layout/layout-01"; import Breadcrumb from "@components/breadcrumb"; import CourseDetails from "@containers/course-details"; import { ICourse, IInstructor, ICurriculum } from "@utils/types";