@@ -16,6 +16,7 @@ import { GET_LEADER_DATA } from 'server/queries/userQueries'
1616import { ProjectTypeGraphql } from 'types/project'
1717import { aboutText , roadmap , technologies } from 'utils/aboutData'
1818import FontAwesomeIconWrapper from 'wrappers/FontAwesomeIconWrapper'
19+ import AnchorTitle from 'components/AnchorTitle'
1920import AnimatedCounter from 'components/AnimatedCounter'
2021import LoadingSpinner from 'components/LoadingSpinner'
2122import Markdown from 'components/MarkdownWrapper'
@@ -75,7 +76,7 @@ const About = () => {
7576 < div className = "min-h-screen p-8 text-gray-600 dark:bg-[#212529] dark:text-gray-300" >
7677 < div className = "mx-auto max-w-6xl" >
7778 < h1 className = "mb-6 mt-4 text-4xl font-bold" > About</ h1 >
78- < SecondaryCard icon = { faScroll } title = "History" >
79+ < SecondaryCard icon = { faScroll } title = { < AnchorTitle title = "History" /> } >
7980 { aboutText . map ( ( text ) => (
8081 < div key = { text } className = "mb-4" >
8182 < div key = { text } >
@@ -85,7 +86,7 @@ const About = () => {
8586 ) ) }
8687 </ SecondaryCard >
8788
88- < SecondaryCard icon = { faArrowUpRightFromSquare } title = "Leaders" >
89+ < SecondaryCard icon = { faArrowUpRightFromSquare } title = { < AnchorTitle title = "Leaders" /> } >
8990 < div className = "flex w-full flex-col items-center justify-around overflow-hidden md:flex-row" >
9091 { Object . keys ( leaders ) . map ( ( username ) => (
9192 < div key = { username } >
@@ -104,7 +105,7 @@ const About = () => {
104105 />
105106 ) }
106107
107- < SecondaryCard icon = { faTools } title = "Technologies & Tools" >
108+ < SecondaryCard icon = { faTools } title = { < AnchorTitle title = "Technologies & Tools" /> } >
108109 < div className = "w-full" >
109110 < div className = "grid w-full grid-cols-1 justify-center sm:grid-cols-2 lg:grid-cols-4 lg:pl-8" >
110111 { technologies . map ( ( tech ) => (
@@ -137,7 +138,7 @@ const About = () => {
137138 </ div >
138139 </ SecondaryCard >
139140
140- < SecondaryCard icon = { faMapSigns } title = "Roadmap" >
141+ < SecondaryCard icon = { faMapSigns } title = { < AnchorTitle title = "Roadmap" /> } >
141142 < ul >
142143 { roadmap . map ( ( item ) => (
143144 < li key = { item . title } className = "mb-4 flex flex-row items-center gap-2 pl-4 md:pl-6" >
0 commit comments