Skip to content

Commit

Permalink
Added address to the buttom of our privacy page.
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudmanic committed Oct 1, 2024
1 parent b2e0bf3 commit ab95379
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/pages/privacy-policy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,18 @@ import TextPageHeader from 'src/components/TextPageHeader'
import Link from 'src/components/Link'
import { accountPageURL, contactUsURL, termsURL } from 'src/utils/navigation'
import Layout from 'src/components/Layout'
import Divider from '@mui/material/Divider'

const openGraphTitle = 'Privacy Policy - Tab for a Cause'
const openGraphDescription =
'Read our Privacy Policy. Tab for a Cause raises money for charity with every browser tab you open.'

const addressStyle = {
margin: 0,
fontStyle: 'italic',
fontSize: 12,
}

const PrivacyPolicyPage = ({ location }) => (
<Layout brand="all" location={location}>
<div>
Expand Down Expand Up @@ -273,6 +280,17 @@ const PrivacyPolicyPage = ({ location }) => (
If you have any questions or concerns, please{' '}
<Link to={contactUsURL}>contact us</Link>.
</p>
<Divider style={{ marginBottom: 20 }} />
<div>
<div>
<p style={{ ...addressStyle, marginBottom: 10 }}>
Tab for a Cause is built with love at:
</p>
<p style={addressStyle}>Gladly, Inc.</p>
<p style={addressStyle}>204 E 2nd Ave</p>
<p style={addressStyle}>San Mateo, CA 94401</p>
</div>
</div>
</TextPageContent>
</div>
</Layout>
Expand Down

0 comments on commit ab95379

Please sign in to comment.