This commit enhances the homepage by adding a new link to the "Apply for staff" page, making it easier for visitors to find and access staff application information directly from the main page. The new link is placed alongside the existing "Contact us" link for better visibility.
20 lines
625 B
TypeScript
20 lines
625 B
TypeScript
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">
|
|
<h1>Welcome to the Altitude forms page</h1>
|
|
<h2><a href="/contact">Contact us.</a></h2>
|
|
<h2><a href="/apply">Apply for staff.</a></h2>
|
|
</header>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default Home; |