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

Minor Changes on Footer #39

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
21 changes: 12 additions & 9 deletions vriddhi/src/app/Components/Footer/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Footer = () => {
Football, Cricket, Badminton, and much more.
</span>
<a href="mailto:[email protected]" className="font-bold ">
Uday Kumar:- 9337067360
Uday Kumar:- 7381357996
</a>
<a href="mailto:[email protected]" className="font-bold ">
Saheel Mohapatra:-9692899851
Expand Down Expand Up @@ -51,7 +51,7 @@ const Footer = () => {
</ul>
</div>
</div>
<div className="flex flex-col md:order-3 order-3 items-start gap-4 justify-start p-7 md:p-0">
{/* <div className="flex flex-col md:order-3 order-3 items-start gap-4 justify-start p-7 md:p-0">
<h1 className="text-xl mt-7 uppercase font-Blanka">Support</h1>
<div>
<ul>
Expand All @@ -66,14 +66,17 @@ const Footer = () => {
})}
</ul>
</div>
</div>
<div className="flex justify-center p-7 md:h-[17rem] md:w-[20rem] md:p-9 md:order-4 order-2">
</div> */}
{/* <div className="flex justify-center p-7 md:h-[17rem] md:w-[20rem] md:p-9 md:order-4 order-2">
<img src={"/map.jpg"} alt="" className="rounded-lg" />
</div>
<div className="flex justify-center p-7 md:h-auto md:w-[20rem] md:order-5 order-1 md:pr-16 ">
</div> */}
<div className=" flex justify-center p-7 md:h-auto md:w-[20rem] md:order-5 order-1">
<img src={"/all_logo.png"} alt="" className="rounded-lg" />
</div>
</footer>
<div className="bg-[#0D1318] pb-6 p-2 text-center text-white">
<a href="https://teamwebwiz.dev">Powered by Team Webwiz💜</a>
</div>
</>
);
};
Expand All @@ -84,12 +87,12 @@ export const QuickLinks = [
{
id: 1,
name: "About Us",
link: "/about",
link: "#aboutus",
},
{
id: 2,
name: "Tournaments",
link: "/tournaments",
link: "#tournaments",
},
{
id: 3,
Expand All @@ -99,7 +102,7 @@ export const QuickLinks = [
{
id: 4,
name: "Contact Us",
link: "/contact",
link: "#contactus",
},
];
export const support = [
Expand Down
12 changes: 6 additions & 6 deletions vriddhi/src/app/Components/Tournament/TournamentPop.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import KeyboardDoubleArrowRightIcon from "@mui/icons-material/KeyboardDoubleArro
import CloseIcon from "@mui/icons-material/Close";

const Header = ({ message }) => {
return <h2 className="text-xl md:text-3xl py-2">{message}</h2>;
return <h2 className="text-xl md:text-3xl py-2 text-white">{message}</h2>;
};

const List = ({ message }) => {
return (
<ul className="list-disc pl-[14px] ml-3">
<ul className="list-disc pl-[14px] ml-3 text-white">
{message.map((msg) => (
<li key={msg} className="py-2 text-base md:text-lg">
<li key={msg} className="py-2 text-base md:text-lg text-white">
{msg}
</li>
))}
Expand Down Expand Up @@ -51,7 +51,7 @@ const Tournament = ({ className, src, tournamentName, rules = [] }) => {
});

return (
<>
<div id="tournament">
<PopupModal
isOpen={openModal}
onClose={handleModalClose}
Expand All @@ -60,7 +60,7 @@ const Tournament = ({ className, src, tournamentName, rules = [] }) => {
<CloseIcon
onClick={() => handleOnClick()}
fontSize="large"
className="float-right cursor-pointer pl-2 md:pl-0"
className="float-right cursor-pointer pl-2 md:pl-0 text-white"
/>
<h1 className="text-[#fff] text-2xl md:text-5xl text-center pb-4">
RULE AND REGULATIONS
Expand All @@ -85,7 +85,7 @@ const Tournament = ({ className, src, tournamentName, rules = [] }) => {
<Image src={src} alt=""></Image>
</div>
</div>
</>
</div>
);
};

Expand Down