diff --git a/package.json b/package.json index c0d53766..4822aca6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simplicity2", - "version": "4.3.9", + "version": "4.3.10", "description": "Version 2 of SimpliCity", "main": "index.js", "scripts": { diff --git a/src/app/development/trc/MajorDevelopmentDashboard.js b/src/app/development/trc/MajorDevelopmentDashboard.js index f026a30f..a64e9ae1 100644 --- a/src/app/development/trc/MajorDevelopmentDashboard.js +++ b/src/app/development/trc/MajorDevelopmentDashboard.js @@ -4,6 +4,27 @@ import Accordion from '../../../shared/Accordion'; import ErrorBoundary from '../../../shared/ErrorBoundary'; import { devDashSections } from './textContent'; +const introductoryContent = ( + +

Large-Scale Development in Asheville

+

There is a lot of private land development happening in Asheville. This tool can help you:

+ +

This is a brand new tool. Like all digital products created by the City of Asheville, it will be updated and refined iteratively in response to public input. Please give us feedback so that we may better understand your needs.

+
+
+
+); + class MajorDevelopmentDashboard extends React.Component { constructor() { super(); @@ -46,8 +67,8 @@ class MajorDevelopmentDashboard extends React.Component { // Make it less overwhelming/scrolly for smaller screens if (this.state.width < 800) { return ( -
-

Major Development in Asheville

+
+ {introductoryContent} -
+ ); } @@ -73,22 +94,7 @@ class MajorDevelopmentDashboard extends React.Component { links={this.sections} />
-

Large-Scale Development in Asheville

-

There is a lot of private land development happening in Asheville. This tool can help you:

- -

This is a brand new tool. Like all digital products created by the City of Asheville, it will be updated and refined iteratively in response to public input. Please give us feedback so that we may better understand your needs.

-
-
+ {introductoryContent} {this.sections.map(section => (

{section.header}