You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
552 B
25 lines
552 B
import Link from 'next/link'
|
|
import React from 'react'
|
|
|
|
export default function CustomerSupportPage() {
|
|
return (
|
|
<div>
|
|
<div>
|
|
<Link
|
|
href='/'
|
|
style={{
|
|
margin: '5px',
|
|
padding: '5px',
|
|
}}
|
|
>{`<-- Go Back Home`}</Link>
|
|
</div>
|
|
<iframe
|
|
src='https://docs.google.com/forms/d/e/1FAIpQLScdlaaW28BdL-J0DrfKbz5TY5JvaGbbc6IVp95cptOQlq4ElQ/viewform?embedded=true'
|
|
width='100%'
|
|
height='1015'
|
|
>
|
|
Loading…
|
|
</iframe>
|
|
</div>
|
|
)
|
|
}
|