Skip to content

Commit 9538f0b

Browse files
committed
add privacy page
1 parent a4e38c4 commit 9538f0b

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed

src/pages/privacy.js

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
import React from "react";
2+
import TitleAndDescription from "../components/TitleAndDescription";
3+
import Layout from "../components/Layout";
4+
import Container from "react-bootstrap/Container";
5+
import Contact from "../components/Contact";
6+
import Row from "react-bootstrap/Row";
7+
import ChartImageContainer from "../components/ChartImageContainer";
8+
import ChartFamilySection from "../components/ChartFamilySection";
9+
import { Link } from "gatsby";
10+
import { Matplotlib, Seaborn } from "../components/MiscellaneousLogos"
11+
import { Button, Col } from "react-bootstrap";
12+
import CodeChunk from "../components/CodeChunk"
13+
import ChartImage from "../components/ChartImage";
14+
import FunctionExploration from '../components/FunctionExploration'
15+
import Spacing from "../components/Spacing";
16+
17+
const chartDescription =
18+
"<p>About privacy.</p>";
19+
20+
21+
22+
export default function Privacy() {
23+
24+
return (
25+
26+
<Layout title="Privacy" isTocEnabled seoDescription="About privacy">
27+
28+
<TitleAndDescription
29+
title="Privacy"
30+
description={chartDescription}
31+
/>
32+
33+
<Container>
34+
<h2 id="Quick">&#9201; About privacy</h2>
35+
</Container>
36+
37+
<Spacing />
38+
39+
<div className="greySection" id="related">
40+
<Container>
41+
<ChartFamilySection chartFamily="distribution" />
42+
</Container>
43+
</div>
44+
45+
<Spacing />
46+
47+
<Container>
48+
<Contact />
49+
</Container>
50+
51+
<Spacing />
52+
53+
</Layout >
54+
);
55+
}

0 commit comments

Comments
 (0)