Skip to content

Commit

Permalink
Restore divs that make page responsible
Browse files Browse the repository at this point in the history
  • Loading branch information
kordwarshuis committed Aug 16, 2024
1 parent b787651 commit 3ebf1f5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/components/HomepageFeatures/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ function Feature({ Svg, title, subtitle, description, url }) {
export default function HomepageFeatures() {
return (
<section className={styles.features}>
{/* <div className="container"> */}
{/* <div className="row"> */}
{FeatureList.map((props, idx) => (
<Feature key={idx} {...props} />
))}
{/* </div> */}
{/* </div> */}
<div className="container">
<div className="row">
{FeatureList.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
);
}

0 comments on commit 3ebf1f5

Please sign in to comment.