-
-Visueel wordt de startpagina hiermee in lijn gebracht met onze andere geüpdatete pagina's. Deze stijl gebruiken we bijvoorbeeld al bij het beheren van de respondenten, bij het maken van uitnodigingen en op de “Nieuwe meting”-pagina.
-Op functioneel gebied zijn er enkele aanpassingen:
-
-
-
- docs directory.
- >
- ),
- },
- {
- title: 'Powered by React',
- Svg: require('@site/static/img/undraw_docusaurus_react.svg').default,
- description: (
- <>
- Extend or customize your website layout by reusing React. Docusaurus can
- be extended while reusing the same header and footer.
- >
- ),
- },
-];
-
-function Feature({title, Svg, description}: FeatureItem) {
- return (
- {description}
-
+ }
diff --git a/src/components/Snapshot.module.css b/src/components/Snapshot.module.css
deleted file mode 100644
index 7e9e79b0..00000000
--- a/src/components/Snapshot.module.css
+++ /dev/null
@@ -1,17 +0,0 @@
-.headers {
- margin-bottom: 0;
- border-bottom-width: 0;
- -webkit-border-radius: 3px 3px 0 0;
- -moz-border-radius: 3px 3px 0 0;
- border-radius: 3px 3px 0 0;
- color: #666;
- background-color: #f1f1f1;
- background-image: -moz-linear-gradient(top, #f1f1f1, #e1e1e1);
- background-image: -ms-linear-gradient(top, #f1f1f1, #e1e1e1);
- background-image: -o-linear-gradient(top, #f1f1f1, #e1e1e1);
- background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(#e1e1e1));
- background-image: -webkit-linear-gradient(top, #f1f1f1, #e1e1e1);
- background-image: linear-gradient(top, #f1f1f1, #e1e1e1);
- filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f1f1f1', EndColorStr='#e1e1e1');
- text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
-}
diff --git a/src/components/Snapshot.tsx b/src/components/Snapshot.tsx
deleted file mode 100644
index 1723e67e..00000000
--- a/src/components/Snapshot.tsx
+++ /dev/null
@@ -1,79 +0,0 @@
-import CodeBlock from '@theme/CodeBlock';
-import React from 'react';
-import RequestTabs from './RequestTabs';
-import styles from "./Snapshot.module.css";
-
-const STATUSES = {
- 200: '200 OK',
- 201: '201 Created',
- 202: '202 Accepted',
- 204: '204 No Content',
- 205: '205 Reset Content',
- 301: '301 Moved Permanently',
- 302: '302 Found',
- 307: '307 Temporary Redirect',
- 304: '304 Not Modified',
- 401: '401 Unauthorized',
- 403: '403 Forbidden',
- 404: '404 Not Found',
- 405: '405 Method not allowed',
- 409: '409 Conflict',
- 422: '422 Unprocessable Entity',
- 500: '500 Server Error',
- 502: '502 Bad Gateway'
-}
-
-type Snapshot = {
- request: {
- request_method: string;
- path: string;
- },
- response: {
- status: number;
- headers: any;
- body: any;
- }
-}
-
-export const Request = ({snapshot}) => {
- return <>
-
-
- { lines.join("\n") }
-
- ;
-}
-
-export const JsonBody = ({json}) => (
- {siteConfig.tagline}
-
-