Skip to content

Commit

Permalink
spu-ui: add spu image to layout
Browse files Browse the repository at this point in the history
  • Loading branch information
matyson committed Dec 4, 2024
1 parent e6fa29b commit 3e0f0a5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions apps/spu-ui/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import "@sophys-web/ui/styles.css";
import "./globals.css";
import type { Metadata } from "next";
import { Roboto_Mono } from "next/font/google";
import Image from "next/image";
import { Toaster } from "@sophys-web/ui/sonner";
import { TRPCReactProvider } from "../trpc/react";
import UserAvatar from "./_components/user-avatar";
Expand All @@ -26,6 +27,13 @@ export default function RootLayout({
</div>
<Toaster richColors theme="light" />
<TRPCReactProvider>{children}</TRPCReactProvider>
<Image
alt="Sapucaia seed"
className="absolute bottom-0 right-0"
height={100}
src="/sapucaia/sementinha.png"
width={100}
/>
</body>
</html>
);
Expand Down

0 comments on commit 3e0f0a5

Please sign in to comment.