Skip to content

Commit

Permalink
feat(frontend): ✨ make loading skeleton for individual sattelite page…
Browse files Browse the repository at this point in the history
… (#307)
  • Loading branch information
Mats authored and GitHub committed Apr 16, 2024
1 parent d824a5f commit 7827129
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions frontend/src/app/satellites/[satelliteSlug]/loading.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React from "react";

import { Skeleton } from "@shadcn/skeleton";

export default function Loading() {
return (
<div className="flex w-full origin-center flex-col justify-center gap-4">
<Skeleton className="align-left h-16 w-1/4" />
<Skeleton className="h-80 w-full self-center" />
<Skeleton className="h-96 w-full self-center" />
</div>
);
}

0 comments on commit 7827129

Please sign in to comment.