diff --git a/src/components/graph/ChartView.ts b/src/components/graph/ChartView.ts
index d48c114..5a80505 100644
--- a/src/components/graph/ChartView.ts
+++ b/src/components/graph/ChartView.ts
@@ -4,7 +4,7 @@ export const ChartView = styled.div`
width: 90%;
div{
- margin-top: 32px;
+ /* margin-top: 10px; */
}
@media (max-width: 900px) {
diff --git a/src/components/graph/LineChart.tsx b/src/components/graph/LineChart.tsx
index b2665b8..807f9dd 100644
--- a/src/components/graph/LineChart.tsx
+++ b/src/components/graph/LineChart.tsx
@@ -131,7 +131,7 @@ export default function LineChart({ title, subtitle, data1, data2, data3, data4,
label: dataset3? dataset3 : '',
data: data3.map(value => value),
borderColor: 'rgb(109, 109, 109)' ,
- backgroundColor: 'rgba(90, 90, 90, 0.5)',
+ backgroundColor: 'rgba(90, 90, 90, 0)',
},
],
} : dataset2? {
@@ -141,13 +141,13 @@ export default function LineChart({ title, subtitle, data1, data2, data3, data4,
label: dataset1? dataset1 : 'Dataset 1',
data: data1.map(value => value),
borderColor: 'rgb(53, 162, 235)',
- backgroundColor: 'rgba(53, 162, 235, 0.5)',
+ backgroundColor: 'rgba(53, 162, 235, 0)',
},
{
label: dataset2? dataset2 : '',
data: data2.map(value => value),
borderColor: 'rgb(255, 114, 32)' ,
- backgroundColor: 'rgba(255, 145, 0, 0.5)' ,
+ backgroundColor: 'rgba(255, 145, 0, 0)' ,
},
],
} : {
@@ -157,7 +157,7 @@ export default function LineChart({ title, subtitle, data1, data2, data3, data4,
label: dataset1? dataset1 : 'Dataset 1',
data: data1.map(value => value),
borderColor: 'rgb(53, 162, 235)',
- backgroundColor: 'rgba(53, 162, 235, 0.5)',
+ backgroundColor: 'rgba(53, 162, 235, 0)',
},
],
}
diff --git a/src/components/sidebar/Sidebar.tsx b/src/components/sidebar/Sidebar.tsx
index 5058884..4ae79c4 100644
--- a/src/components/sidebar/Sidebar.tsx
+++ b/src/components/sidebar/Sidebar.tsx
@@ -36,7 +36,7 @@ export default function Sidebar() {
{'Telemetria >'}
{'Resumo de Op. '}
{'Notícias >'}
- {'Info Setorial >'}
+ {'Info Setorial >'}
{/* {'Consumo'} */}
{'Notificações >'}
{'Sobre Nós >'}
diff --git a/src/pages/accumulatedSavings.tsx b/src/pages/accumulatedSavings.tsx
index 9a2d043..3ac3cdc 100644
--- a/src/pages/accumulatedSavings.tsx
+++ b/src/pages/accumulatedSavings.tsx
@@ -14,7 +14,7 @@ export default function AccumulatedSavings() {
)
diff --git a/src/pages/chartTelemetry.tsx b/src/pages/chartTelemetry.tsx
index 5cb69c0..8a780d5 100644
--- a/src/pages/chartTelemetry.tsx
+++ b/src/pages/chartTelemetry.tsx
@@ -18,10 +18,10 @@ export default function chartTelemetry() {
)
diff --git a/src/pages/estimatedCost.tsx b/src/pages/estimatedCost.tsx
index 8ff220e..9a53a5d 100644
--- a/src/pages/estimatedCost.tsx
+++ b/src/pages/estimatedCost.tsx
@@ -14,7 +14,7 @@ export default function EstimatedCost() {
)
diff --git a/src/pages/grossSavings.tsx b/src/pages/grossSavings.tsx
index 9f65d3a..a3cc64e 100644
--- a/src/pages/grossSavings.tsx
+++ b/src/pages/grossSavings.tsx
@@ -14,7 +14,7 @@ export default function GrossSavings() {
)
diff --git a/src/pages/industryInfo.tsx b/src/pages/industryInfo.tsx
new file mode 100644
index 0000000..32fe8c1
--- /dev/null
+++ b/src/pages/industryInfo.tsx
@@ -0,0 +1,17 @@
+import React from 'react'
+import BasicButton from '../components/buttons/basicButton/BasicButton'
+import Header from '../components/header/Header'
+import PageTitle from '../components/pageTitle/PageTitle'
+import { IndustryInfoView } from '../styles/layouts/industryInfo/IndustryInfoView'
+
+export default function industryInfo() {
+ return (
+
+
+
+
+
+ )
+}
diff --git a/src/styles/layouts/industryInfo/IndustryInfoView.ts b/src/styles/layouts/industryInfo/IndustryInfoView.ts
new file mode 100644
index 0000000..f2757ae
--- /dev/null
+++ b/src/styles/layouts/industryInfo/IndustryInfoView.ts
@@ -0,0 +1,12 @@
+import styled from "styled-components";
+
+export const IndustryInfoView = styled.main`
+ display: flex;
+ flex-direction: column;
+
+ width: 100%;
+
+ .title {
+ margin-bottom: 50px;
+ }
+`