Skip to content

Commit

Permalink
🍭🛼 ↝ [SSG-65]: Removing some previous onboarding fluff and updating h…
Browse files Browse the repository at this point in the history
…ow telescope & zoodex structs. display their modules
  • Loading branch information
Gizmotronn committed Nov 10, 2024
1 parent d03796a commit 987e3ff
Show file tree
Hide file tree
Showing 13 changed files with 212 additions and 483 deletions.
1 change: 0 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import {
VenusView
} from './scenes';
import GlobeView from "./scenes/globe/page";
import InitialiseChapterOneUser from "@/components/(scenes)/chapters/one/InitialiseUser";
import { EarthScene } from "./scenes/earth/scene";
import StructuresOnPlanet, { AtmosphereStructuresOnPlanet, OrbitalStructuresOnPlanet } from "@/components/Structures/Structures";
import EnhancedWeatherEvents from "@/components/enhanced-weather-events";
Expand Down
1 change: 0 additions & 1 deletion app/scenes/earth/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import StructuresOnPlanet, {
OrbitalStructuresOnPlanet,
} from "@/components/Structures/Structures";
import AllAutomatonsOnActivePlanet from "@/components/Structures/Auto/AllAutomatons";
import InitialiseChapterOneUser from "@/components/(scenes)/chapters/one/InitialiseUser";
import InventoryPage from "@/components/Inventory/Grid/Grid";
import EnhancedWeatherEventsComponent from "@/components/enhanced-weather-events";
import TopographicMap from "@/components/topographic-map";
Expand Down
1 change: 0 additions & 1 deletion app/scenes/onboarding/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React from "react";
import { EarthScene } from "../earth/scene";
import InitialiseChapterOneUser from "@/components/(scenes)/chapters/one/InitialiseUser";
import InventoryPage from "@/components/Inventory/Grid/Grid";
import EnhancedWeatherEvents from "@/components/enhanced-weather-events";
import MissionSelector from "@/components/mission-selector";
Expand Down
3 changes: 0 additions & 3 deletions app/scenes/planet/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import { useActivePlanet } from "@/context/ActivePlanet";
import PlanetViewLayout from "@/components/(scenes)/planetScene/layout";
import StructuresOnPlanet, { AtmosphereStructuresOnPlanet, OrbitalStructuresOnPlanet } from "@/components/Structures/Structures";
import { InventoryStructureItem } from "@/types/Items";
import ChapterOneIntroduction from "@/components/(scenes)/chapters/one/ChapterOneIntro";
import { PlanetarySystem } from "@/components/(scenes)/planetScene/orbitals/system";
// import { BottomMenuBar } from "@/app/components/sections/bottomMenuBar";
import AllAutomatonsOnActivePlanet from "@/components/Structures/Auto/AllAutomatons";
Expand Down Expand Up @@ -81,7 +80,6 @@ export default function PlanetViewPage() {
<div></div>
<div></div>
<div></div>
<div><ChapterOneIntroduction /></div>
</PlanetViewLayout>
);
}
Expand All @@ -102,7 +100,6 @@ export default function PlanetViewPage() {
<PlanetStructures />
{isGuidePopupVisible && (
<div className="fixed inset-0 flex items-center justify-center z-50">
<ChapterOneIntroduction />
<button
onClick={() => setIsGuidePopupVisible(false)}
className="absolute top-4 right-4 bg-red-500 text-white p-2 rounded-full hover:bg-red-600 focus:outline-none"
Expand Down
5 changes: 4 additions & 1 deletion app/tests/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ import React, { useEffect, useState } from "react";
import StarnetLayout from "@/components/Layout/Starnet";
import ImageAnnotation from "@/components/Projects/(classifications)/Annotation";
import InventoryPage from "@/components/Inventory/Grid/Grid";
import TelescopeComponent from "@/constants/Structures/Telescope";
import ZoodexComponent from "@/constants/Structures/Zoodex";

export default function TestPage() {
return (
<StarnetLayout>
<InventoryPage />
<TelescopeComponent />
<ZoodexComponent />
</StarnetLayout>
);
};
Expand Down
115 changes: 0 additions & 115 deletions components/(scenes)/chapters/one/ChapterOneIntro.tsx

This file was deleted.

Loading

0 comments on commit 987e3ff

Please sign in to comment.