Shop page update

Changed Shop to socials page
This commit is contained in:
2024-02-27 15:40:48 -05:00
parent be2354b67d
commit 6b287ff39d
4 changed files with 67 additions and 2 deletions

37
src/pages/Socials.js Normal file
View File

@@ -0,0 +1,37 @@
import React from "react";
import "../styles/Socials.css";
function Socials() {
return (
<div className="socialBody">
<div className="social1">
<h1> Just A Test </h1>
<p> Test Paragraph</p>
<div className="socialButton1">
<a class="btn" href="https://discord.gg/brQXPhQ" target="_blank">Join the Cord!</a>
</div>
</div>
<div className="social2">
<h1> Just A Test 2</h1>
<p> Test Paragraph 2</p>
<div className="socialButton2">
<a class="btn" href="https://discord.gg/brQXPhQ" target="_blank">Join the Cord2!</a>
</div>
</div>
</div>
);
}
export default Socials;