157 lines
7.7 KiB
JavaScript
157 lines
7.7 KiB
JavaScript
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">
|
||
<div className="map-responsive">
|
||
<iframe
|
||
width="600"
|
||
height="500"
|
||
id="gmap_canvas"
|
||
src="https://maps.google.com/maps?q=CF10%203NQ&t=&z=17&ie=UTF8&iwloc=&output=embed"
|
||
frameBorder="0"
|
||
scrolling="no"
|
||
marginHeight="0"
|
||
marginWidth="0"
|
||
></iframe>
|
||
</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: <a href="tel:03034445940">03034 445 940</a>
|
||
<br />
|
||
E-mail:{" "}
|
||
<a href="mailto:dns.wales@planninginspectorate.gov.uk">
|
||
dns.wales@planninginspectorate.gov.uk
|
||
</a>
|
||
<br />
|
||
Follow us on Twitter{" "}
|
||
<a href="https://twitter.com/pinsgov">
|
||
@PINSgov
|
||
</a>
|
||
</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:{" "}
|
||
<a href="tel:03034445004">0303 444 5004</a> or{" "}
|
||
<a href="tel:03034445005">0303 444 5005</a>{" "}
|
||
<br />
|
||
Email:{" "}
|
||
<a href="mailto:press.office@planninginspectorate.gov.uk">
|
||
press.office@planninginspectorate.gov.uk
|
||
</a>
|
||
</p>
|
||
</div>
|
||
</main>
|
||
</div>
|
||
<Footer footerLinks={footerLinks} />
|
||
</div>
|
||
</div>
|
||
);
|
||
};
|
||
|
||
export default Home; //connect(mapStateToProps)(Home);
|