diff --git a/src/pages/Resource.tsx b/src/pages/Resource.tsx index eabd0e1..59b7cbb 100644 --- a/src/pages/Resource.tsx +++ b/src/pages/Resource.tsx @@ -4,7 +4,13 @@ import { articles } from "../dummyArticles"; import { generateTitleId } from "../utils"; import DualColumnText from "../components/DualColumnText"; import ResourceCard from "../components/ResourceCard"; -import { IonCard, IonCardContent, IonCardHeader, IonCardTitle, IonText } from "@ionic/react"; +import { + IonCard, + IonCardContent, + IonCardHeader, + IonCardTitle, + IonText, +} from "@ionic/react"; const resources = [ { @@ -23,32 +29,34 @@ const resources = [ }, { title: "Boys & Girls Clubs of Boston", - description: "We provides a pipeline for young people to explore their passions, find their purpose, and prepare for a life of success and impact.", + description: + "We provides a pipeline for young people to explore their passions, find their purpose, and prepare for a life of success and impact.", image: "/boysandgirls.png", - action: null + action: null, }, { title: "Boston Public Schools", - description: "Boston Public Schools (BPS) educates over 2,800 K1 students in over 130 classrooms across the District.", + description: + "Boston Public Schools (BPS) educates over 2,800 K1 students in over 130 classrooms across the District.", image: "/bps.png", - action: null + action: null, }, { title: "Jed Foundation", - description: "The Jed Foundation is a non-profit organization that protects emotional health and prevents suicide for teens and young adults in the United States.", + description: + "The Jed Foundation is a non-profit organization that protects emotional health and prevents suicide for teens and young adults in the United States.", image: "/jed.png", - action: null + action: null, }, { title: "AFSP", - description: "The American Foundation for Suicide Prevention is a voluntary health organization that advocates for research and education around suicide.", + description: + "The American Foundation for Suicide Prevention is a voluntary health organization that advocates for research and education around suicide.", image: "/asp.png", - action: null - } + action: null, + }, ]; - - const Resource: React.FC = () => { return (
@@ -60,24 +68,25 @@ const Resource: React.FC = () => {

- Here at the Center of Young Colorful Minds, we are dedicated to supporting the mental well-being of teenagers. Below, you'll find a curated list of resources designed to help you navigate the challenges of adolescence and prioritize your mental health. + Here at the Center of Young Colorful Minds, we are dedicated to + supporting the mental well-being of teenagers. Below, you'll find a + curated list of resources designed to help you navigate the + challenges of adolescence and prioritize your mental health.

{resources.map((resource) => ( - - {resource.title} + + {resource.title} - - {resource.title} - + {resource.title} - - {resource.description} - + {resource.description} ))}