Skip to content

Commit

Permalink
Merge pull request #239 from PeterOche/main
Browse files Browse the repository at this point in the history
upaded page.js
  • Loading branch information
PeterOche authored Feb 22, 2025
2 parents d31b54d + 73f2055 commit d81d392
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion frontend/app/about/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import FeatureCards from "@/components/about-us/FeatureCards";
import VisionSection from "@/components/about-us/VisionSection";
import JoinSection from "@/components/about-us/JoinSection";
import StatsSection from "@/components/about-us/StatsSection";
import Game from "@/components/game/GameSection";


export default function AboutPage() {
Expand All @@ -16,7 +17,8 @@ export default function AboutPage() {
<VisionSection />
<JoinSection />
<StatsSection />
<Game/>
<Footer />
</div>
);
}
}
4 changes: 3 additions & 1 deletion frontend/app/leaderboard/page.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import LeaderBoard from "@/components/LeaderBoard";
import Header from "@/components/Header";
import Footer from "@/components/Footer";
import Game from "@/components/game/GameSection";

export default function Home() {
return (
Expand All @@ -9,7 +10,8 @@ export default function Home() {
<div className="p-20">
<LeaderBoard />
</div>
<Game/>
<Footer />
</div>
);
}
}

0 comments on commit d81d392

Please sign in to comment.