Skip to content

Commit

Permalink
#554 Header looks different on inner pages; needs to be same (#556)
Browse files Browse the repository at this point in the history
* EIN added in footer

* fixing margin-top for ein footer

* initial

* fixing headers
  • Loading branch information
IngridFuentes committed Mar 15, 2024
1 parent b188fc3 commit 1a3518f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/containers/course-details/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ type TProps = {
const CourseDetails = ({
data: { course, curriculum, instructor },
}: TProps) => {

return (
<>
<section className="course-details">
<div className="tw-container tw-grid lg:tw-grid-cols-3 tw-gap-12">
<div className="lg:tw-col-[1/3]">
Expand Down Expand Up @@ -55,6 +57,7 @@ const CourseDetails = ({
</div>
</div>
</section>
</>
);
};

Expand Down
2 changes: 1 addition & 1 deletion src/pages/curriculum/[slug].tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit 1a3518f

Please sign in to comment.