File tree Expand file tree Collapse file tree 8 files changed +16
-16
lines changed
Expand file tree Collapse file tree 8 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ import Grid from '@material-ui/core/Grid';
1212
1313const About = ( ) => {
1414 const breadCrumbLinks = [
15- { name : 'Home ' , href : '/ ' } ,
16- { name : 'About ' , href : '/about ' } ,
15+ { href : '/ ' , name : 'Home ' } ,
16+ { href : '/about ' , name : 'About ' } ,
1717 ] ;
1818
1919 const classes = useStyles ( ) ;
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ import { Typography } from '@material-ui/core';
1212
1313const Collaborate = ( ) => {
1414 const breadCrumbLinks = [
15- { name : 'Home ' , href : '/ ' } ,
16- { name : 'Collaborate with Us ' , href : '/support/collaborate ' } ,
15+ { href : '/ ' , name : 'Home ' } ,
16+ { href : '/support/collaborate ' , name : 'Collaborate with Us ' } ,
1717 ] ;
1818
1919 return (
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ import { GenericHeaderSection } from '../../components/';
88
99const Contact = ( ) => {
1010 const breadCrumbLinks = [
11- { name : 'Home ' , href : '/ ' } ,
12- { name : 'Contact ' , href : '/about/contact ' } ,
11+ { href : '/ ' , name : 'Home ' } ,
12+ { href : '/about/contact ' , name : 'Contact ' } ,
1313 ] ;
1414 const handlePageHeight = ( ) => {
1515 window . parent . scrollTo ( 0 , 0 ) ;
Original file line number Diff line number Diff line change @@ -246,8 +246,8 @@ export default function Contributors() {
246246 } ;
247247
248248 const breadCrumbLinks = [
249- { name : 'Home ' , href : '/ ' } ,
250- { name : 'Civic Tech Organizations ' , href : '/organizations/all ' } ,
249+ { href : '/ ' , name : 'Home ' } ,
250+ { href : '/organizations/all ' , name : 'Civic Tech Organizations ' } ,
251251 ] ;
252252
253253 return (
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ const Faq = () => {
4343 ) ;
4444
4545 const breadCrumbLinks = [
46- { name : 'Home ' , href : '/ ' } ,
47- { name : 'FAQ ' , href : '/about/faq ' } ,
46+ { href : '/ ' , name : 'Home ' } ,
47+ { href : '/about/faq ' , name : 'FAQ ' } ,
4848 ] ;
4949
5050 const getFaqData = async ( currentQuery , resetState ) => {
Original file line number Diff line number Diff line change @@ -102,8 +102,8 @@ const IndvOrgPage = ({ match }) => {
102102 // Create the breadcrums on the Individual Organization Page
103103 const parentOrgs = [ ] ;
104104 const crumbs = [
105- { name : 'Home ' , href : '/ ' } ,
106- { name : 'View Organization ' , href : '/organizations/all ' } ,
105+ { href : '/ ' , name : 'Home ' } ,
106+ { href : '/organizations/all ' , name : 'View Organization ' } ,
107107 {
108108 name : name ,
109109 href :
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ import PhotoCardMobile from './PhotoCardMobile';
1010import { GenericHeaderSection } from '../../components/' ;
1111const RadicalCollaboration = ( ) => {
1212 const breadCrumbLinks = [
13- { name : 'Home ' , href : '/ ' } ,
14- { name : 'Collaborate with Us ' , href : '/support ' } ,
13+ { href : '/ ' , name : 'Home ' } ,
14+ { href : '/support ' , name : 'Collaborate with Us ' } ,
1515 ] ;
1616 const Images = [
1717 {
Original file line number Diff line number Diff line change @@ -165,8 +165,8 @@ const SocialMediaSection = () => {
165165export default function ShareTheCti ( ) {
166166 const classes = useStyles ( ) ;
167167 const breadCrumbLinks = [
168- { name : 'Home ' , href : '/ ' } ,
169- { name : 'Share the CTI ' , href : '/support/share ' } ,
168+ { href : '/ ' , name : 'Home ' } ,
169+ { href : '/support/share ' , name : 'Share the CTI ' } ,
170170 ] ;
171171
172172 return (
You can’t perform that action at this time.
0 commit comments