Skip to content

Commit

Permalink
feat: docs loading
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsch318 committed Mar 16, 2024
1 parent 77adb73 commit 04a7b2f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/docs/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import "../../styles/simple.scss";

export default function Layout({ children }: { children: React.ReactNode }) {
return { children };
return <>{children} </>;
}
15 changes: 15 additions & 0 deletions src/app/docs/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
export default function Page() {
return (
<div className="grid grid-rows-2 justify-center items-center">
<h1 className="text-xl">Loading...</h1>
<img
alt="still waiting"
src={
"https://media1.tenor.com/m/bZpnYV69q7kAAAAC/kyriostsahs-lonely.gif"
}
height={400}
width={600}
></img>
</div>
);
}

0 comments on commit 04a7b2f

Please sign in to comment.