Skip to content

Commit

Permalink
updated and resolve the warning messages
Browse files Browse the repository at this point in the history
  • Loading branch information
rNLKJA committed Dec 31, 2023
1 parent 63f7c5d commit c33ccf6
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 14 deletions.
2 changes: 1 addition & 1 deletion pages/_app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function MyApp({ Component, pageProps }) {
maxWidth={isMobile ? "xs" : "lg"}
style={{
width: isMobile ? "100%" : "1100px",
backgroundColor: "",
backgroundColor: "#ffffff",
}}
>
<Header />
Expand Down
24 changes: 11 additions & 13 deletions pages/blogs/data.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,13 @@ export const DataArticle = () => {
</div>
<div>
<h3 className="py-5">Case Studies</h3>
<p className="leading-8">
<div>
<ul className="list-disc pl-10">
<li>{data["Case Studies"].case1}</li>
<li>{data["Case Studies"].case2}</li>
<li>{data["Case Studies"].case3}</li>
</ul>
</div>
</p>
<div>
<ul className="list-disc pl-10">
<li>{data["Case Studies"].case1}</li>
<li>{data["Case Studies"].case2}</li>
<li>{data["Case Studies"].case3}</li>
</ul>
</div>
</div>
</div>

Expand Down Expand Up @@ -110,31 +108,31 @@ export const DataArticle = () => {
</div>
</div>
<div className="flex justify-center items-center">
{/* <Image
<Image
src="/article/more-about-data-science/data-solution.png"
width={300}
height={300}
quality={50}
alt="data solution"
layout="fixed"
priority={true}
/> */}
/>
</div>
</div>

<h3>Best Practices</h3>
<p className="leading-8">{data["Best Practices"]}</p>

<div className="flex flex-start justify-center items-center">
<Image
{/* <Image
src="/article/more-about-data-science/data-trend.png"
width={800}
height={300}
layout="responsive"
quality={50}
alt="data intro"
priority={true}
/>
/> */}
</div>

<h3>Future Trends"</h3>
Expand Down
5 changes: 5 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -134,3 +134,8 @@ body {
color: #3b3434;
cursor: pointer;
}

.myContainer {
width: 1100px;
background-color: #ffffff /* default color */;
}

0 comments on commit c33ccf6

Please sign in to comment.