diff --git a/frontend/src/components/steps/results/ResultsStep.js b/frontend/src/components/steps/results/ResultsStep.js index 290830d..dabcde1 100644 --- a/frontend/src/components/steps/results/ResultsStep.js +++ b/frontend/src/components/steps/results/ResultsStep.js @@ -7,7 +7,9 @@ import Button from '@mui/material/Button'; import PlantRepository from '../../../repository/PlantRepository' import { Typography, Box } from '@mui/material'; import resultsBackgroundImage from '../../../assets/img/stepBackgrounds/step6.jpg'; +import staticText from '../../../assets/data/staticText.json' +const RESULTS_DESCRIPTION = Please review the plant species list – it can be saved as a CSV file or appended to a planting plan guidebook. Additional information on each species can be obtained by entering the plant species name into the search box at inaturalist.nz or in the "search flora" box at www.nzpcn.org.nz. Click the "Download PDF" button to create a planting plan guidebook specific to your project site.. export default function ResultsStep(props) { const [plants, setPlants] = useState([]); @@ -76,12 +78,13 @@ export default function ResultsStep(props) { const stepContent = (
- Plant List Results + {staticText.steps.results.title} + {RESULTS_DESCRIPTION}
)