added dns landing page and others
This commit is contained in:
@@ -0,0 +1,130 @@
|
||||
import _ from "lodash";
|
||||
import Link from "next/link";
|
||||
import Head from "next/head";
|
||||
import Header from "../../components/header";
|
||||
import Banner from "../../components/banner";
|
||||
import CookieBanner from "../../components/cookieBanner";
|
||||
import Breadcrumbs from "../../components/breadcrumbs";
|
||||
import Footer from "../../components/footer";
|
||||
import Errorpage from "../../components/errorpage";
|
||||
import styles from "../../styles/Home.module.css";
|
||||
import { useSelector, shallowEqual, connect } from "react-redux";
|
||||
import { wrapper } from "../../store/store";
|
||||
import Cookies from "cookies";
|
||||
import { useRouter } from "next/router";
|
||||
import useTranslation from "next-translate/useTranslation";
|
||||
import Main from "../../components/dns/main";
|
||||
|
||||
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>
|
||||
Contact us - Developments of National Significance
|
||||
</title>
|
||||
</Head>
|
||||
<div id="page_wrapper">
|
||||
<CookieBanner />
|
||||
<Header serviceName="Developments of National Significance" />
|
||||
|
||||
<div className="govuk-width-container">
|
||||
<Banner />
|
||||
<Breadcrumbs slug={appealtypes} />
|
||||
<main className="govuk-main-wrapper">
|
||||
<div className="govuk-grid-row">
|
||||
<div className="govuk-grid-column-two-thirds">
|
||||
<h1 className="govuk-heading-l">Contact us</h1>
|
||||
<p className="govuk-body">
|
||||
We are located in The Welsh Government
|
||||
Building, Cathays Park in Cardiff
|
||||
</p>
|
||||
<p>
|
||||
{" "}
|
||||
The Planning Inspectorate
|
||||
<br />
|
||||
Crown Buildings <br />
|
||||
Welsh Government <br />
|
||||
Cathays Park
|
||||
<br /> Cardiff <br />
|
||||
CF10 3NQ
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div className="govuk-row">
|
||||
<p>
|
||||
{" "}
|
||||
If you are contacting us regarding a Development
|
||||
of National Significance, please use the
|
||||
following details:
|
||||
</p>
|
||||
<p>
|
||||
Tel: 03034 445 940
|
||||
<br />
|
||||
E-mail: dns.wales@planninginspectorate.gov.uk
|
||||
<br />
|
||||
Follow us on Twitter @PINSgov
|
||||
</p>
|
||||
<p>
|
||||
Further information about contacting the
|
||||
Planning Inspectorate customer services can be
|
||||
viewed on GOV.Wales.
|
||||
</p>
|
||||
<p>
|
||||
The Planning Inspectorate gives advice about
|
||||
applying for a Development of National
|
||||
Significance or making representations about an
|
||||
application (or a proposed application) although
|
||||
you should note that any advice given does not
|
||||
constitute legal advice upon which you can rely
|
||||
and you should obtain your own legal advice and
|
||||
professional advice as required. We will protect
|
||||
the privacy of any personal information which
|
||||
you choose to share with us and we will not hold
|
||||
the information any longer than is necessary.
|
||||
See our Privacy notice on GOV.UK.
|
||||
</p>
|
||||
<p>
|
||||
You should note that we have a policy commitment
|
||||
to openness and transparency and you should not
|
||||
provide us with confidential or commercial
|
||||
information which you do not wish to be put in
|
||||
the public domain.
|
||||
</p>
|
||||
<h3>Feedback and complaints</h3>
|
||||
<p>
|
||||
The Planning Inspectorate aims to provide the
|
||||
best possible service for its customers. We try
|
||||
hard to ensure that everyone is satisfied with
|
||||
the service they receive. It is inevitable that
|
||||
there will sometimes be concerns about the
|
||||
Examination process or the appointed inspector’s
|
||||
final report. We will carefully consider and
|
||||
respond to any matters that you wish to raise:
|
||||
contact details are on GOV.Wales.
|
||||
</p>
|
||||
<h3>Press and media</h3>
|
||||
<p>
|
||||
If you are a journalist please contact our press
|
||||
office directly:{" "}
|
||||
</p>
|
||||
<p>
|
||||
Telephone: 0303 444 5004 or 0303 444 5005 <br />
|
||||
Email: press.office@planninginspectorate.gov.uk
|
||||
</p>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
<Footer footerLinks={footerLinks} />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Home; //connect(mapStateToProps)(Home);
|
||||
Reference in New Issue
Block a user