Add Category descriptions

This commit is contained in:
Mike Simpson 2023-05-12 16:39:49 +01:00
parent e4026acef3
commit 42d42d7306
2 changed files with 15 additions and 11 deletions

View File

@ -355,6 +355,10 @@ const withCopyEdit: (wc: React.ComponentType<CategoryViewProps>) => DataContaine
}
</ContainerHeader>
<div className="section-body">
<InfoBox>
{this.props.intro}&nbsp;
Can you help us capture and verify this information?
</InfoBox>
<EditHistoryLatest
building={this.props.building}
/>

View File

@ -50,55 +50,55 @@ export const categoriesConfig: {[key in Category]: CategoryDefinition} = {
slug: 'age',
name: 'Age & History',
aboutUrl: 'https://pages.colouring.london/age',
intro: 'Building age data can support energy analysis and help predict long-term change.',
intro: 'This section provides open data on the age of buildings and the history of buildings and sites.',
},
[Category.Size]: {
slug: 'size',
name: 'Size',
aboutUrl: 'https://pages.colouring.london/shapeandsize',
intro: 'How big are buildings?',
intro: 'This section provides open data on the dimensions of buildings.',
},
[Category.Team]: {
slug: 'team',
name: 'Team',
aboutUrl: 'https://pages.colouring.london/team',
intro: 'Who built the buildings?',
intro: 'This section provides open data on the teams designing and constructing the buildings.',
},
[Category.Construction]: {
slug: 'construction',
name: 'Construction',
aboutUrl: 'https://pages.colouring.london/construction',
intro: 'How are buildings built?',
intro: 'This section provides open data on building materials and construction systems.',
},
[Category.Location]: {
slug: 'location',
name: 'Location',
aboutUrl: 'https://pages.colouring.london/location',
intro: 'Where are the buildings? Address, location and cross-references.',
intro: 'This section provides open data on building locations and building IDs.',
},
[Category.Community]: {
slug: 'community',
name: 'Community',
aboutUrl: 'https://pages.colouring.london/community',
intro: 'How does this building work for the local community?',
intro: 'This section collects data on how well citizens think specific *types* of building work (rather than individual buildings). This will help us save and reuse as many useful buildings as possible, and to help improve urban design quality in future.',
},
[Category.Planning]: {
slug: 'planning',
name: 'Planning Controls',
aboutUrl: 'https://pages.colouring.london/planning',
intro: 'Planning controls relating to protection and reuse.',
intro: 'This section provides open data on current and anticipated planning applications for buildings, planning zones and whether the building is protected.',
},
[Category.Sustainability]: {
slug: 'sustainability',
name: 'Energy Performance',
aboutUrl: 'https://pages.colouring.london/sustainability',
intro: 'Are buildings energy efficient?',
intro: 'This section provides open data on the energy performance of buildings, and on retrofit.',
},
[Category.Type]: {
slug: 'type',
name: 'Typology',
aboutUrl: 'https://pages.colouring.london/buildingtypology',
intro: 'How were buildings previously used?',
intro: 'This section provides open data on the type of activities being carried out within buildings.',
},
[Category.LandUse]: {
slug: 'use',
@ -111,12 +111,12 @@ export const categoriesConfig: {[key in Category]: CategoryDefinition} = {
slug: 'streetscape',
name: 'Street Context',
aboutUrl: 'https://pages.colouring.london/greenery',
intro: "What's the building's context? Coming soon…",
intro: "This section provides open data, and links to open data on streets, pavements, street blocks, land parcels and greenery/green spaces.",
},
[Category.Resilience]: {
slug: 'resilience',
name: 'Resilience',
aboutUrl: 'https://pages.colouring.london/dynamics',
intro: 'How has the site of this building changed over time?'
intro: 'This section provides a tool that allows for live collection of data in disaster situations and collates data relating to building resilience.'
},
};