Adds Survey route

This commit is contained in:
Alicia Sykes 2021-09-01 21:55:49 +01:00
parent c792b3246e
commit fc15ad05f9
2 changed files with 21 additions and 0 deletions

15
src/pages/survey.js Normal file
View File

@ -0,0 +1,15 @@
import React from 'react';
import Layout from '@theme/Layout';
import '../styles/Survey.scss';
export default function Survey() {
return (
<Layout
title="Dashy Survey"
description="Documentation | Dashy, a self-hosted dashboard for your homelab">
<main className="survey">
<iframe id="dashy-survey" src="https://n9fy6xak9yd.typeform.com/to/gl0L68ou"></iframe>
</main>
</Layout>
);
}

6
src/styles/Survey.scss Normal file
View File

@ -0,0 +1,6 @@
iframe#dashy-survey {
width: 100%;
height: 92vh;
border: none;
}