Skip to content

Commit

Permalink
solved error #425
Browse files Browse the repository at this point in the history
  • Loading branch information
rNLKJA committed Dec 31, 2023
1 parent c33ccf6 commit b2f17ee
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions components/layout/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import { Fade } from "react-awesome-reveal";
const Header = () => {
// Both headers are rendered, but CSS controls which one is displayed based on screen size
return (
<>
<div>
<DesktopHeader />
<MobileHeader />
</>
</div>
);
};

Expand Down
4 changes: 2 additions & 2 deletions components/layout/index/Hero-Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const HeroHeaderSection = () => {
const handleClose = () => setOpen(false);

return (
<>
<div>
<div className="grid md:grid-cols-2 gap-5 pb-10 px-4 pb-10 items-center">
<div>
<h1>Inspring, Innovation & Unlock the Power of Data Analytics</h1>
Expand Down Expand Up @@ -98,7 +98,7 @@ const HeroHeaderSection = () => {
)
: // Desktop view: Display the PDF viewer modal
open && <PdfViewer open={open} handleClose={handleClose} />}
</>
</div>
);
};

Expand Down
4 changes: 2 additions & 2 deletions pages/blogs/data.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const DataArticle = () => {
}, []);

return (
<>
<div>
{data && (
<div className="flex flex-col py-10 px-4">
<div className="flex flex-start justify-center items-center">
Expand Down Expand Up @@ -152,6 +152,6 @@ export const DataArticle = () => {
</div>
</div>
)}
</>
</div>
);
};

0 comments on commit b2f17ee

Please sign in to comment.