Skip to content

Commit

Permalink
Create terms and privacy page
Browse files Browse the repository at this point in the history
  • Loading branch information
murillo94 committed Jan 12, 2021
1 parent 2c5b113 commit 544c667
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/site/src/layouts/wrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,10 @@ const Page = ({ children }) => (
<Heading is="h5" marginBottom={4}>
Empresa
</Heading>
<Link href="#" passHref>
<Link href="/terms" passHref>
<Anchor>termos de uso</Anchor>
</Link>
<Link href="#" passHref>
<Link href="/privacy" passHref>
<Anchor>política de privacidade</Anchor>
</Link>
{/* <Link href="#" passHref>
Expand Down
12 changes: 12 additions & 0 deletions packages/site/src/pages/privacy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Box, Heading, Paragraph } from '@storeen/components';

import useLayout from '@site/hooks/useLayout';

const Carrers = () => (
<Box as="section" paddingX={3} paddingY={4} marginBottom={15}>
<Heading marginBottom={4}>Política de privacidade</Heading>
<Paragraph marginBottom={10}>todo</Paragraph>
</Box>
);

export default useLayout(Carrers);
12 changes: 12 additions & 0 deletions packages/site/src/pages/terms.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Box, Heading, Paragraph } from '@storeen/components';

import useLayout from '@site/hooks/useLayout';

const Carrers = () => (
<Box as="section" paddingX={3} paddingY={4} marginBottom={15}>
<Heading marginBottom={4}>Termos de uso</Heading>
<Paragraph marginBottom={10}>todo</Paragraph>
</Box>
);

export default useLayout(Carrers);

3 comments on commit 544c667

@vercel
Copy link

@vercel vercel bot commented on 544c667 Jan 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

styleguide-storeen – ./packages/styleguide

styleguide-storeen.vercel.app
styleguide-storeen-git-master.murillodmiranda.vercel.app
styleguide-storeen.murillodmiranda.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 544c667 Jan 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

app-storeen – ./packages/app

app-storeen.murillodmiranda.vercel.app
app-storeen.vercel.app
app-storeen-git-master.murillodmiranda.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 544c667 Jan 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

site-storeen – ./packages/site

site-storeen-git-master.murillodmiranda.vercel.app
site-storeen.vercel.app
site-storeen.murillodmiranda.vercel.app

Please sign in to comment.