Files
pedwfrontend/pages/dns/help.js
T
2024-06-19 06:32:38 +01:00

116 lines
4.9 KiB
JavaScript

import Head from "next/head";
import Link from "next/link";
import Breadcrumbs from "../../components/breadcrumbs";
import CookieBanner from "../../components/cookieBanner";
import Footer from "../../components/footer";
import Header from "../../components/header";
import useTranslation from "next-translate/useTranslation";
import { useRouter } from "next/router";
const Home = (props) => {
const { footerLinks, pages } = props;
let { t, lang } = useTranslation();
const router = useRouter();
const { locale } = router;
const { appealtypes } = router.query;
return (
<div>
<Head>
<title>Developments of National Significance</title>
</Head>
<div id="page_wrapper">
<CookieBanner />
<Header serviceName="Developments of National Significance" />
<div className="govuk-width-container">
<Breadcrumbs slug={appealtypes} />
<main className="govuk-main-wrapper">
<div className="govuk-row">
<h1>Help</h1>
<p>
Welcome to the website help page. This section
contains the following:
</p>
<h2 className="govuk-heading-s">
<Link href="#" className="govuk-link">
Accessibility
</Link>
</h2>
<p>
For information about accessing the website and
help using the site.
</p>
<h2 className="govuk-heading-s">
<Link href="#" className="govuk-link">
Terms and conditions
</Link>
</h2>
<p>
Outlines the terms and conditions of using the
site.
</p>
<h2 className="govuk-heading-s">
<Link href="#" className="govuk-link">
Cookies
</Link>
</h2>
<p>
Provides information on cookies and how the
website uses them.
</p>
<h2 className="govuk-heading-s">
<Link href="#" className="govuk-link">
Privacy
</Link>
</h2>
<p>View our Privacy Notice on GOV.UK.</p>
<h2 className="govuk-heading-s">
<Link href="#" className="govuk-link">
Welsh language
</Link>
</h2>
<p>
Our commitment to providing information in Welsh
under the Planning Inspectorate Welsh Language
Scheme.
</p>
<h2 className="govuk-heading-s">
<Link href="#" className="govuk-link">
Sitemap
</Link>
</h2>
<p>
A view of all the pages within the site and the
heirarchy of the site.
</p>
<h2 className="govuk-heading-s">
<Link href="#" className="govuk-link">
Useful links
</Link>
</h2>
<p>
Links to other related websites and documents.
</p>
<h2 className="govuk-heading-s">
<Link href="#" className="govuk-link">
Contact
</Link>
</h2>
<p>
Find out contact details for the Planning
Inspectorate.
</p>
</div>
</main>{" "}
</div>
<Footer footerLinks={footerLinks} ticketnumber={props} />
</div>
</div>
);
};
export default Home; //connect(mapStateToProps)(Home);