Skip to content

Commit 02c7bb0

Browse files
Merge pull request #127 from terminusdb/cloneTexts
change clone texts
2 parents 4b2df05 + d75b913 commit 02c7bb0

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

packages/tdb-dashboard/src/components/NoDataProductSelected.js

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,30 @@ export const NoDataProductSelected = (props) => {
1919
const showNoDataProduct = createdb && list.length===0 ? true : false
2020

2121
let cloneDataProduct = [
22-
{
22+
{
2323
name: "lego",
24+
label: "Parts & Components Inventory",
2425
img: "https://ichef.bbci.co.uk/news/976/cpsprodpb/4F49/production/_125879202_legorussia.png",
25-
description: "Shop awesome LEGO® building toys and brick sets and find the perfect gift for your kid. "
26+
description: "This data product features Lego sets and their individual components and the relationships between them. It is an excellent example of organizations that have interconnected components and parts within their product offerings."
2627
},
27-
{
28+
/*{
2829
name: "Star_Wars",
30+
label: "Relationships Between People, Real Estate, & Equipment",
2931
img: "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQHkosbW26brusDap1E3y2GV6pnIRsjg-9Rc1CdJRuMJjrJ1O6fJs_x2bjcGjBUCB_wkTE&usqp=CAU",
30-
description: "Star Wars is an American epic space opera multimedia franchise created by George Lucas, and became a worldwide pop-culture phenomenon."
31-
},
32+
description: "This data product features a Star Wars dataset and their individual components and how they are all connected and is a good example of the relationships between people and things."
33+
},*/
3234
{
3335
name: "nuclear",
36+
label: "The Complex Energy Sector",
3437
img:"https://static.dw.com/image/59710463_605.jpg",
35-
description: "Nuclear power plants are a type of power plant that use the process of nuclear fission in order to generate electricity. "
38+
description: "Featuring nuclear power stations, this data product demonstrates the interconnected nature of extremely complex environments."
3639
},
37-
{
40+
{
3841
name: "CAMS",
42+
label: "Plot Data & Its Relationships on a Map",
3943
img:"https://github.com/CriticalAssetManagement/CAMS-web-assets/raw/main/Images/CAMS-GitHub-Header-v5.jpg",
40-
description: "Building climate resilience for those who need it. An open-source project for good. Helping to use local knowledge to become climate resilient."
41-
},
44+
description: "CAMS is a critical asset management system that maps the dependency relationships between critical assets and displays them on a map to help first responders plan for emergencies."
45+
}
4246
]
4347

4448
const getCloneUrl = () =>{
@@ -98,7 +102,7 @@ export const NoDataProductSelected = (props) => {
98102
<Card className="h-100">
99103
<Card.Img variant="top" src={arr.img}/>
100104
<Card.Body>
101-
<Card.Title className="h5 fw-bold text-success">{arr.name}</Card.Title>
105+
<Card.Title className="h5 fw-bold text-success">{arr.label}</Card.Title>
102106
<Card.Text className="text-light text-left h6">
103107
{arr.description}
104108
</Card.Text>

0 commit comments

Comments
 (0)