Skip to content

Commit

Permalink
remove ingame branding
Browse files Browse the repository at this point in the history
  • Loading branch information
tharoosha committed Oct 23, 2024
1 parent 24612cf commit 73cf638
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions frontend/src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ function Footer() {
<div className="mx-auto px-8 grid grid-cols-1 md:grid-cols-2 gap-8">
{/* Logo and Description (Taking Half the Space) */}
<div className="col-span-1 md:col-span-1 pr-8">
<img src={logo} alt="InGame Esports Logo" className="w-32 mb-4" />
<img src={logo} alt="ArenaSync Esports Logo" className="w-32 mb-4" />
<p className="text-sm text-gray-300">
ingame.gg by InGame Esports is a tournament platform for all South
ArenaSync by ArenaSync Esports is a tournament platform for all South
Asian Esports athletes. The platform will host events across many
Esports titles, and cater to both small-scale community tournaments
and large-scale national-level championships. Current countries
Expand All @@ -18,11 +18,11 @@ function Footer() {
<p className="text-sm text-gray-300 mt-2">
For support join our Discord at
<a
href="https://ingame.gg/discord"
href="https://arenasync.com/discord"
className="text-blue-500 hover:underline"
>
{" "}
https://ingame.gg/discord
https://arenasync.com/discord
</a>
</p>
</div>
Expand Down Expand Up @@ -116,7 +116,7 @@ function Footer() {
<h4 className="text-blue-500 border-l-4 border-blue-500 pl-2 mb-4 font-bold">
CONTACT
</h4>
<p className="text-sm text-gray-300 mb-2">e: support@ingame.gg</p>
<p className="text-sm text-gray-300 mb-2">e: support@arenasync.com</p>
<p className="text-sm text-gray-300">T: +94 76 404 7529</p>
</div>
</div>
Expand All @@ -125,15 +125,15 @@ function Footer() {
{/* Bottom Footer */}
<div className="flex bg-gray-800 text-center justify-between items-center w-full py-4 mt-8 px-8">
<p className="text-sm text-gray-400">
ArenaSL.LK © 2024 | Your home for eSports and Digital Entertainment |
ArenaSync.com © 2024 | Your home for eSports and Digital Entertainment |
v0.0.1
</p>
<p className="text-sm text-gray-400 mt-1">
{/* <p className="text-sm text-gray-400 mt-1">
Solution by{" "}
<a href="https://teamr.gg" className="text-blue-500 hover:underline">
weyora
</a>
</p>
</p> */}
</div>
</footer>
);
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Navbar/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function Navbar() {
<nav className="navbar-bottom flex justify-between items-center py-4 px-4">
{/* Logo */}
<div className="w-24">
<img src={logo} alt="InGame Esports Logo" className="w-20" />
<img src={logo} alt="ArenaSync Esports Logo" className="w-20" />
</div>
{/* Navigation Links */}
<div className="flex space-x-16">
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/RegisterEvent/RegisterEvent.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default function RegisterEvent({ onClose, eventid, fetchData }) {
</button>

<div className="flex justify-center mb-6">
<img src={logo} alt="InGame Esports Logo" className="w-16" />
<img src={logo} alt="ArenaSync Esports Logo" className="w-16" />
</div>
<h2 className="text-2xl text-center mb-6">Register to Tournament</h2>

Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/SignIn/SignIn.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ export default function LoginForm({
</button>

<div className="flex justify-center mb-6">
<img src={logo} alt="InGame Esports Logo" className="w-16" />
<img src={logo} alt="ArenaSync Esports Logo" className="w-16" />
</div>
<h2 className="text-2xl text-center mb-6">Login to InGame eSports</h2>
<h2 className="text-2xl text-center mb-6">Login to ArenaSync eSports</h2>

<form className="space-y-4" onSubmit={formik.handleSubmit}>
<input
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/SignUp/SignUp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ export default function SignupForm({

{/* Logo */}
<div className="flex justify-center mb-6">
<img src={logo} alt="InGame Esports Logo" className="w-16" />
<img src={logo} alt="ArenaSync Esports Logo" className="w-16" />
</div>

{/* Form Title */}
<h2 className="text-center text-2xl mb-6">
Welcome to InGame eSports Platform!
Welcome to ArenaSync eSports Platform!
</h2>
<p className="text-center text-gray-400 mb-8">
Enter your personal details to experience your eSport Portal.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,12 @@ export default function SignUpRecommendationForm({
<div className="bg-gray-800 text-primary_text p-8 rounded-lg w-full max-w-lg shadow-lg relative">
{/* Logo */}
<div className="flex justify-center mb-6">
<img src={logo} alt="InGame Esports Logo" className="w-16" />
<img src={logo} alt="ArenaSync Esports Logo" className="w-16" />
</div>

{/* Form Title */}
<h2 className="text-center text-2xl mb-6">
Welcome to InGame eSports Platform!
Welcome to ArenaSync eSports Platform!
</h2>
<p className="text-center text-gray-400 mb-8">
Select Your Favorite Games
Expand Down

0 comments on commit 73cf638

Please sign in to comment.