From 2c9fafd802cc795c6ee2387ac09d65ffa097a10f Mon Sep 17 00:00:00 2001 From: Mathis Date: Thu, 20 Jun 2024 14:57:03 +0200 Subject: [PATCH] feat(layout): add Wallet and Dashboard buttons Imported Link and Button components into layout.tsx, which were used to add Wallet and Dashboard navigational buttons to the header section. The buttons have been set with a 'light' variant and flex features for responsive design. --- src/app/layout.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a3cb9e3..c6e2d13 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,6 +8,8 @@ import { Providers } from "@/components/providers/providers"; import { ThemeProvider } from "@/components/providers/theme-provider"; import { Toaster } from "@/components/ui/toaster"; import type React from "react"; +import Link from "next/link"; +import {Button} from "@/components/ui/button"; export const metadata: Metadata = { title: "YeloBit", @@ -28,7 +30,10 @@ export default function RootLayout({
- +
+ + +
{children}