Skip to content

Commit

Permalink
add the terms of use page
Browse files Browse the repository at this point in the history
  • Loading branch information
alishaevn committed Oct 31, 2023
1 parent 3d9c2b8 commit 9535eee
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions pages/terms-of-use/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { TitledTextBox } from '@scientist-softserv/webstore-component-library'

const TermsOfUse = () => (
<div className='container'>
<TitledTextBox title='Terms of Use' text={text} />
</div>
)

export default TermsOfUse

const text = `
Update this text with the actual terms of use from the client.
`
2 changes: 1 addition & 1 deletion utils/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const FOOTER_SECTIONS = [
},
{
name: 'Terms of Use',
url: '/',
url: '/terms-of-use',
},
{
name: 'Cookie Policy',
Expand Down

0 comments on commit 9535eee

Please sign in to comment.