Skip to content

Commit

Permalink
🥽🌦️ ↝ Topographic map initialised
Browse files Browse the repository at this point in the history
  • Loading branch information
Gizmotronn committed Jan 5, 2024
1 parent 501e29b commit ff4a202
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/Content/ClassificationFeed.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export function ClassificationFeedForIndividualPlanet(planetId, backgroundColorS
}

return (
<div className="flex flex-col items-center gap-4 py-2" style={{ maxWidth: '100%', margin: 'auto' }}>
<div className="flex flex-col items-center gap-4 py-5" style={{ maxWidth: '100%', margin: 'auto' }}>
{posts.map((post) => (
<>
<CardForum key={post.id} {...post} backgroundColor={backgroundColorSet} />
Expand Down
6 changes: 5 additions & 1 deletion components/Content/Planets/Base/IndividualBasePlanet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,11 @@ export function IndividualBasePlanetDesktop({ id }: { id: string }) {
<h1 className="text-center text-slate-300 text-opacity-100 font-['Inter'] tracking-[3.48px] mt-2 mb-4 text-4xl font-extrabold leading-none tracking-tight text-gray-900 md:text-5xl lg:text-6xl dark:text-white text-gray-400">
{content}
</h1>

<div className="w-[1169.62px] h-[735.77px] left-[415px] top-[343px] absolute">
<div className="w-[608px] h-[576px] left-[405px] top-[108px] absolute justify-center items-center inline-flex" />
<img className="w-[147.59px] h-[150.77px] left-0 top-[285px] absolute" src="https://github.com/Signal-K/client/blob/FCDB-21/public/assets/Inventory/Items/AeroCameraLevel1NoBg.png?raw=true" />
<img className="w-[150px] h-[150px] left-[927px] top-[229.63px] absolute origin-top-left rotate-[-86.76deg]" src="https://qwbufbmxkjfaikoloudl.supabase.co/storage/v1/object/public/planets/69/Kepler22.png" />
</div>
<img
src={avatar_url}
alt="Planet Image"
Expand Down
4 changes: 3 additions & 1 deletion pages/feed/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ export default function Home() {

return (
<Layout>
<ClassificationFeed custommaxWidth={customMaxWidth} />
<div className="py-10">
<ClassificationFeed custommaxWidth={customMaxWidth} />
</div>
</Layout>
);
}
Expand Down
3 changes: 2 additions & 1 deletion pages/planets/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,10 @@ export default function PlanetIdPage () {
<ClassificationFeedForIndividualPlanet planetId={{ id: id as string }} backgroundColorSet="bg-blue-200" />
</div>
<div className="">
{/* <ClassificationFeed /> */}
<BasePlanetData planetId={{ id: id as string }} />
</div>
</div>
<img src={`https://qwbufbmxkjfaikoloudl.supabase.co/storage/v1/object/public/planetsss/${id}/topography.jpeg`} alt="Topography" />
</div>
<CreateBar />
</>
Expand Down

0 comments on commit ff4a202

Please sign in to comment.