added dns landing page and others
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import Link from "next/link";
|
||||
import { useRouter } from "next/router";
|
||||
import useTranslation from "next-translate/useTranslation";
|
||||
|
||||
const ApplicationsForComment = (props) => {
|
||||
let { t } = useTranslation();
|
||||
|
||||
const router = useRouter();
|
||||
const { locale } = router;
|
||||
return (
|
||||
<div className="govuk-panel govuk-grid-column-one-third govuk-panel--open-for-comments">
|
||||
<h2 className="govuk-heading-m">Applications open for comments</h2>
|
||||
<div className="govuk-panel__body">
|
||||
<ul className="govuk-list">
|
||||
<li>
|
||||
<a className="govuk-body-s " href="">
|
||||
Holyhead Harbour Revision Order
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default ApplicationsForComment;
|
||||
Reference in New Issue
Block a user