Skip to content

Commit

Permalink
Merge pull request #275 from Elite-tch/game-guide
Browse files Browse the repository at this point in the history
Game-Guide
CLOSES #275
  • Loading branch information
BigBen-7 authored Mar 6, 2025
2 parents ce7580d + 2896d8b commit f7839ad
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from "react";
import InteractiveHowToPlay from "@/components/InteractiveHowToPlay";
import DewordleTutorial from "@/components/GameGuide";

const page = () => {
return (
<div>
<InteractiveHowToPlay />
<DewordleTutorial />
</div>
);
};
Expand Down
File renamed without changes.
6 changes: 6 additions & 0 deletions frontend/components/NavbarLandingPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ const NavbarLandingPage = () => {

{/* Desktop Menu (Visible on Large Screens) */}
<div className="hidden md:flex items-center gap-6 text-[#29296E]">
<Link href="/game-guide">
<button className="text-[#29296E] py-2">Game Guide</button>
</Link>
<Link href="/signup">
<button className="text-[#29296E]">Sign Up</button>
</Link>
Expand All @@ -90,6 +93,9 @@ const NavbarLandingPage = () => {
{/* Mobile Dropdown Menu (Visible on Small Screens) */}
{isMobileMenuOpen && (
<div className="absolute top-[70px] left-0 w-full bg-white shadow-lg py-4 z-50 flex flex-col items-center md:hidden">
<Link href="/game-guide">
<button className="text-[#29296E] py-2">Game Guide</button>
</Link>
<Link href="/signup">
<button className="text-[#29296E] py-2">Sign Up</button>
</Link>
Expand Down

0 comments on commit f7839ad

Please sign in to comment.