2024-01-13 14:53:47 +00:00
|
|
|
import React, { FunctionComponent } from 'react';
|
|
|
|
|
import { Helmet } from 'react-helmet';
|
|
|
|
|
|
|
|
|
|
const Home: FunctionComponent = () => {
|
|
|
|
|
return (
|
|
|
|
|
<div>
|
|
|
|
|
<Helmet>
|
|
|
|
|
<title>Forms</title>
|
|
|
|
|
<meta name="Forms home page" content="The home page for all Altitude forms"/>
|
|
|
|
|
</Helmet>
|
|
|
|
|
<header className="App-header">
|
2024-01-14 20:05:13 +00:00
|
|
|
<h1>Welcome to the Altitude forms page</h1>
|
|
|
|
|
<h2><a href="/contact">Contact us.</a></h2>
|
2024-08-11 16:32:57 +00:00
|
|
|
<h2><a href="/apply">Apply for staff.</a></h2>
|
2024-01-13 14:53:47 +00:00
|
|
|
</header>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default Home;
|