Skip to content

Commit

Permalink
πŸŒ¦οΈπŸš£πŸ»β€β™‚οΈ ↝ [SSM-54 SSM-55]: Adding page for research view
Browse files Browse the repository at this point in the history
  • Loading branch information
Gizmotronn committed Oct 30, 2024
1 parent e7d8eef commit 4604f47
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
3 changes: 0 additions & 3 deletions app/scenes/earth/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ import AllAutomatonsOnActivePlanet from "@/components/Structures/Auto/AllAutomat
import InitialiseChapterOneUser from "@/components/(scenes)/chapters/one/InitialiseUser";

const EarthView: React.FC = () => {
const supabase = useSupabaseClient();
const session = useSession();

return (
<div className="min-h-screen w-full flex flex-col">
<img
Expand Down
18 changes: 18 additions & 0 deletions app/scenes/research/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
"use client";

import React from "react";
import { AdvancedTechTreeComponent } from "@/components/Structures/Research/TechTree";

export default function ResearchPage() {
return (
<div className="min-h-screen w-full flex flex-col">
<img
className="absolute inset-0 w-full h-full object-cover"
src="/assets/Backdrops/Earth.png"
/>
<div className="relative">
<AdvancedTechTreeComponent />
</div>
</div>
);
};

0 comments on commit 4604f47

Please sign in to comment.