Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

integration of prior Donations section #48

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions my-app/src/components/Donations/Donations.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,9 @@
margin-top: 0;
padding-bottom: 2em;
padding-top: 2rem;
}

#Donations .btn {
float: right;
border: 2px solid black
}
20 changes: 15 additions & 5 deletions my-app/src/components/Donations/Donations.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
import React from 'react';
import './Donations.css';
import React from "react";
import "./Donations.css";

const Donations = () => {
return (
<section id="Donations">
<h1>How To Donate</h1>
<p>This is the donations section!</p>
<div>
<div className="btn">
<a href="https://opencollective.com/open-dallas/contribute">
Link to Donation Page
</a>
</div>
<div>
Looking to support us? Click the button to see our donation page:
</div>
</div>
</section>
)
}
);
};

export default Donations;
export default Donations;
15 changes: 15 additions & 0 deletions my-app/src/components/Donations/donation.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<html>
<head>

</head>
<body>
<div>
<div style="float: right; border: 2px solid black">
<a href="https://opencollective.com/open-dallas/contribute">Link to Donation Page</a>
</div>
<div >
Looking to support us? Click the button to see our donation page:
</div>
</div>
</body>
</html>