Skip to content

Commit

Permalink
fix(refund): changed css import.
Browse files Browse the repository at this point in the history
  • Loading branch information
viraka committed May 19, 2024
1 parent 5303c89 commit 360e69f
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions src/modules/Public/Donation/pages/Refund.tsx
Original file line number Diff line number Diff line change
@@ -1,21 +1,26 @@
import styles from "./Donate.module.css";
import styles from "../Donation.module.css";
import Footer from "../components/Footer";
import Navbar from "../components/Navbar";
import RefundPage from "../components/RefundText";

const Refund = () => {
return(
return (
<div className={styles.LClandingPage}>
<Navbar />
<div className={styles.backgroundImage}><img src="https://i.ibb.co/cCvB4r6/Learning-BG.png" alt="textured background" ></img></div>
<div className={styles.backgroundImage}>
<img
src="https://i.ibb.co/cCvB4r6/Learning-BG.png"
alt="textured background"
></img>
</div>
<div className={styles.refundSection}>
<div className={styles.textContainer}>
<RefundPage />
</div>
</div>
<Footer />
</div>
)
);
};

export default Refund
export default Refund;

0 comments on commit 360e69f

Please sign in to comment.