-
-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #395 from Pushpa472/Select-language
Bug: fixed bug in selected language #374
- Loading branch information
Showing
5 changed files
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,9 @@ const Section2 = () => { | |
> | ||
BoardGame Cafe{!isWide && <br />} | ||
</h1> | ||
<p className={`flex ${isWide ? `text-xl justify-center mt-3` : `text-base mt-1`}`}>©2024 by Sip & Play</p> | ||
<p className={`flex ${isWide ? `text-[center] mt-3 ml-[620px]` : `text-base mt-1`}`}> | ||
©2024 by Sip & Play | ||
</p> | ||
</div> | ||
</div> | ||
</> | ||
|
@@ -108,10 +110,10 @@ const Nav = () => { | |
const emailAddress = '[email protected]'; | ||
|
||
return ( | ||
<div className="flex md:flex-row flex-col shrink-0 gap-4 sm:gap-20"> | ||
<div className="flex md:flex-row flex-col shrink-0 gap-4 sm:gap-20 ml-[30px]"> | ||
<div className="flex justify-between md:gap-20"> | ||
<div className="flex flex-col gap-2 text-black dark:text-white"> | ||
<h3 className="mb-2 uppercase text-black dark:text-white">About</h3> | ||
<h3 className="mb-2 uppercase text-black dark:text-white cursor-pointer">About</h3> | ||
{navLinks.map((item, index) => ( | ||
<Link | ||
className="hover:text-white duration-300" | ||
|
@@ -122,8 +124,9 @@ const Nav = () => { | |
</Link> | ||
))} | ||
</div> | ||
|
||
<div className="flex flex-col gap-2 text-black dark:text-white"> | ||
<h3 className="mb-2 uppercase text-black dark:text-white">Socials</h3> | ||
<h3 className="mb-2 uppercase text-black dark:text-white ml-[30px] cursor-pointer">Socials</h3> | ||
{socialLink.map((item, index) => ( | ||
<a | ||
target="_blank" | ||
|
@@ -138,8 +141,9 @@ const Nav = () => { | |
))} | ||
</div> | ||
</div> | ||
|
||
<div className="flex flex-col text-black dark:text-white"> | ||
<h3 className="mb-2 uppercase text-black dark:text-white">Contact Us</h3> | ||
<h3 className="mb-2 uppercase text-black dark:text-white ml-[30px] cursor-pointer">Contact Us</h3> | ||
<a | ||
href={`mailto:${emailAddress}`} | ||
className="block mb-2 hover:underline" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters