Skip to content

Commit

Permalink
fix: navbar import issues
Browse files Browse the repository at this point in the history
  • Loading branch information
yeasin2002 committed Nov 21, 2024
1 parent 5fd2190 commit 1db62b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/(auth)/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SiteNave } from "@/components/SiteNav"
import { SiteNav } from "@/components/SiteNav"

import { SignInGridEffect } from "./SignInGridEffect"

Expand All @@ -7,7 +7,7 @@ interface Props extends React.PropsWithChildren {}
const AuthLayout = ({ children }: Props) => {
return (
<>
<SiteNave className="absolute" />
<SiteNav className="absolute" />
<section
aria-label="Sign in"
className=" container grid h-screen grid-cols-1 items-center gap-2 bg-background py-4 *:size-full lg:grid-cols-3"
Expand Down
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { ClerkProvider } from "@clerk/nextjs"
import { siteConfig } from "@/config/site"
import { cn } from "@/lib/utils"
import { SiteHeader } from "@/components/SiteHeader"
import { SiteNave } from "@/components/SiteNav"
import { SiteNav } from "@/components/SiteNav"
import { TailwindIndicator } from "@/components/TailwindIndicator"
import { ThemeProvider } from "@/components/ThemeProvider"

Expand Down
Binary file added build/favicon.ico
Binary file not shown.

0 comments on commit 1db62b7

Please sign in to comment.