diff --git a/app/layout.tsx b/app/layout.tsx index 6f820fc..5473e1c 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -27,7 +27,7 @@ export default function RootLayout({ disableTransitionOnChange > */} -
+
{children}
{/* */} diff --git a/components/navigation.tsx b/components/navigation.tsx index 68faa83..2bd6992 100644 --- a/components/navigation.tsx +++ b/components/navigation.tsx @@ -5,18 +5,24 @@ import { usePathname } from "next/navigation" import { Button } from "@/components/ui/button" import { Avatar, AvatarFallback } from "@/components/ui/avatar" import { ConnectButton } from '@rainbow-me/rainbowkit' -import { Zap } from "lucide-react" +import Image from "next/image" export default function Navigation() { const pathname = usePathname() return (
-
+
-
- +
+ HackHub Logo
HackHub diff --git a/types/jsx.d.ts b/types/jsx.d.ts index 0427ca5..81dff7d 100644 --- a/types/jsx.d.ts +++ b/types/jsx.d.ts @@ -3,6 +3,8 @@ import React from 'react'; declare global { namespace JSX { interface IntrinsicElements { + body: React.DetailedHTMLProps, HTMLBodyElement>; + html: React.DetailedHTMLProps, HTMLHtmlElement>; [elemName: string]: any; } }