File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66.DS_Store
77.DS_Store ?
88.vscode /settings.json
9+
10+ # Local Netlify folder
11+ .netlify
Original file line number Diff line number Diff line change 1818
1919import React from 'react' ;
2020import PropTypes from 'prop-types' ;
21- import { Link } from 'gatsby' ;
2221import * as styles from './footer.module.scss' ;
2322import cncfLogo from '../../images/footer/cncf-white.svg' ;
2423import github from '../../images/footer/github-icon.svg' ;
@@ -35,11 +34,11 @@ const Footer = ({ whiteFooter }) => (
3534 < img src = { cncfLogo } alt = 'CNCF logo' className = { styles . logo } />
3635 < div className = { styles . copyrightBar } >
3736 < div className = { styles . verticalCenter } >
38- < Link to = 'https://www.linuxfoundation.org/terms' target = '_blank' rel = 'noreferrer' className = { styles . mutedLink } > Terms of Service</ Link >
37+ < a href = 'https://www.linuxfoundation.org/terms' target = '_blank' rel = 'noreferrer' className = { styles . mutedLink } > Terms of Service</ a >
3938 < span >
4039 |
4140 </ span >
42- < Link to = 'https://www.linuxfoundation.org/privacy' target = '_blank' rel = 'noreferrer' className = { styles . mutedLink } > Privacy Policy</ Link >
41+ < a href = 'https://www.linuxfoundation.org/privacy' target = '_blank' rel = 'noreferrer' className = { styles . mutedLink } > Privacy Policy</ a >
4342 </ div >
4443 < div className = { styles . centerContent } >
4544 Copyright © 2018- The Pixie Authors. All Rights Reserved.
Original file line number Diff line number Diff line change @@ -227,9 +227,9 @@ const Header = ({ whiteHeader, transparentMenu }) => {
227227 </ a >
228228 </ li >
229229 </ ul >
230- < Link to = 'https://www.linuxfoundation.org/terms' target = '_blank' rel = 'noreferrer' > Terms of Service</ Link >
230+ < a href = 'https://www.linuxfoundation.org/terms' target = '_blank' rel = 'noreferrer' > Terms of Service</ a >
231231 < br />
232- < Link to = 'https://www.linuxfoundation.org/privacy' target = '_blank' rel = 'noreferrer' > Privacy Policy</ Link >
232+ < a href = 'https://www.linuxfoundation.org/privacy' target = '_blank' rel = 'noreferrer' > Privacy Policy</ a >
233233 </ div >
234234 </ div >
235235 < IconButton onClick = { ( ) => setOpen ( true ) } className = 'hide-desktop' >
Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ const SEO = ({
147147} ;
148148
149149SEO . defaultProps = {
150- meta : [ ] ,
150+ meta : { } ,
151151 description : '' ,
152152 type : 'website' ,
153153} ;
Original file line number Diff line number Diff line change @@ -136,7 +136,7 @@ const Homepage = () => {
136136 < div className = 'container' >
137137 < h2 >
138138 < div className = { `${ styles . marker } hide-mobile hide-tablet` } style = { { margin : '20px auto' } } />
139- < Button className = { `${ styles . button } block hide-desktop` } to = 'https://docs.px.dev/installing-pixie/install-guides/' target = '_blank' rel = 'noreferrer' >
139+ < Button className = { `${ styles . button } block hide-desktop` } link = 'https://docs.px.dev/installing-pixie/install-guides/' target = '_blank' rel = 'noreferrer' >
140140 GET STARTED
141141 </ Button >
142142 Why use Pixie?
You can’t perform that action at this time.
0 commit comments