File tree Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Expand file tree Collapse file tree 1 file changed +55
-0
lines changed Original file line number Diff line number Diff line change
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" > ⏱ 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
+ }
You can’t perform that action at this time.
0 commit comments