Added kofi support me
This commit is contained in:
@@ -5,6 +5,7 @@ import "tailwindcss/tailwind.css";
|
||||
import React, { useEffect, useState } from "react";
|
||||
import NightModeToggle from "@/components/NightModeToggle";
|
||||
import Navbar from "@/components/NavigationBar";
|
||||
import KofiWidget from "@/components/KofiWidget";
|
||||
|
||||
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||
const [isDarkMode, setIsDarkMode] = useState(false);
|
||||
@@ -49,8 +50,10 @@ export default function RootLayout({ children }: { children: React.ReactNode })
|
||||
`,
|
||||
}}
|
||||
/>
|
||||
|
||||
</head>
|
||||
<body className="bg-gray-100 dark:bg-gray-900 text-gray-900 dark:text-gray-100 min-h-screen">
|
||||
<KofiWidget />
|
||||
<Navbar />
|
||||
<main className="relative">{children}</main>
|
||||
<div className="fixed bottom-4 right-4">
|
||||
|
||||
Reference in New Issue
Block a user