added dns landing page and others
This commit is contained in:
@@ -0,0 +1,153 @@
|
||||
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>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-row">
|
||||
<h1>Guidance</h1>
|
||||
<p>
|
||||
Applications for Developments of National
|
||||
Significance (DNS) projects are dealt with by
|
||||
the Planning Inspectorate on behalf of Welsh
|
||||
Government.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
A DNS is a type of planning application for a
|
||||
large infrastructure project of national
|
||||
importance – for example, a wind farm, power
|
||||
station or reservoir.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
A DNS differs from a normal planning application
|
||||
in the way that it is decided. Instead of your
|
||||
Local Planning Authority making the decision, an
|
||||
Inspector examines the application and makes a
|
||||
recommendation to the Welsh Minister based on
|
||||
planning merits and national priorities. The
|
||||
Minister then decides whether or not to grant
|
||||
permission.
|
||||
</p>
|
||||
</div>
|
||||
<div className="govuk-row">
|
||||
<h2>About the process</h2>
|
||||
<p>
|
||||
The DNS process is designed to encourage the
|
||||
applicants on such a scheme to undertake early
|
||||
engagement with:
|
||||
</p>
|
||||
<ul className="govuk-list govuk-list--bullet">
|
||||
<li>the relevant Local Planning Authority,</li>
|
||||
<li>local communities,</li>
|
||||
<li>statutory consultees and</li>
|
||||
<li>other stakeholders.</li>
|
||||
</ul>
|
||||
<p>
|
||||
Anyone considering a DNS project should contact
|
||||
the Planning Inspectorate as soon as possible
|
||||
after a site has been chosen. This will ensure
|
||||
that as much work can be done to reduce
|
||||
objections to a scheme as possible before
|
||||
submission. This in turn allows the formal
|
||||
application process to be streamlined.
|
||||
</p>
|
||||
</div>
|
||||
<div className="govuk-row">
|
||||
<h2>Information and guidance</h2>
|
||||
<p>
|
||||
There is a{" "}
|
||||
<a href="https://gov.wales/developments-national-significance-dns-guidance">
|
||||
suite of detailed Guidance for the DNS
|
||||
process
|
||||
</a>{" "}
|
||||
on the Welsh Government site. The{" "}
|
||||
<a href="https://gov.wales/developments-national-significance-dns-engaging-process">
|
||||
DNS Guide for Communities
|
||||
</a>{" "}
|
||||
has been written with community groups or
|
||||
interested parties who are not familiar with the
|
||||
DNS process in mind.
|
||||
</p>
|
||||
</div>
|
||||
<div className="govuk-row">
|
||||
<h2>Forms</h2>
|
||||
<p>
|
||||
Applicants who wish to submit a request for
|
||||
Pre-Application Advice, submit formal
|
||||
notification of intention to submit a DNS
|
||||
application or submit an application should
|
||||
contact the Planning Inspectorate:
|
||||
</p>
|
||||
|
||||
<p>
|
||||
e-mail:{" "}
|
||||
<a href="mailto:dns.wales@planninginspectorate.gov.uk">
|
||||
dns.wales@planninginspectorate.gov.uk
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<p>Telephone: 0303 444 5958</p>
|
||||
|
||||
<p>
|
||||
Interested parties who wish to make a
|
||||
Representation on a DNS project that has been
|
||||
formally accepted by the Planning Inspectorate
|
||||
can use the Representation form and submit it
|
||||
via e-mail using the relevant reference number.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
We strongly encourage you to discuss your
|
||||
application with us in advance of submitting any
|
||||
of our forms, so that we can ensure that the
|
||||
resources necessary are in place and
|
||||
arrangements for the invoicing of fees are in
|
||||
place. If you do not provide advance notice,
|
||||
this may delay the handling of your request or
|
||||
the provision of our advice.
|
||||
</p>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
<Footer footerLinks={footerLinks} />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Home; //connect(mapStateToProps)(Home);
|
||||
Reference in New Issue
Block a user