Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

186 future students landing page #187

Draft
wants to merge 11 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
fix destructured json import
  • Loading branch information
ptbarnum4 committed Nov 19, 2024
commit 951f40bead5325a7bd418ebc9b728da1fa27f8ee
4 changes: 3 additions & 1 deletion pages/programs/workforce/futureStudents.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { NextPage } from 'next';
import styled, { useTheme } from 'styled-components';

import { partners } from '@this/data/logos.json';
import logos from '@this/data/logos.json';

import { Content, Main, Section } from '@this/components/layout';
import PlainCard from '@this/src/components/Cards/PlainCard';
Expand All @@ -13,6 +13,8 @@ import NavLink from '@this/src/components/Navbar/elements/NavLink';
import { Img } from '@this/src/Typography/elements/Html';
import { motion } from 'framer-motion';

const partners = logos.partners;

const CohortSchedule: NextPage = () => {
const theme = useTheme();
const urbanLeagueLogo = partners.find((partner) => partner.name === 'Urban League of Louisiana');
Expand Down