Skip to content

Commit

Permalink
fixed hydration error
Browse files Browse the repository at this point in the history
  • Loading branch information
ShreyTanna29 committed Nov 24, 2024
1 parent bab911c commit 189611e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/(landing)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import LandingNavbar from "@/components/landingNavbar";

function LandingPage() {
return (
<div className="h-4">
<div className="h-full">
<LandingNavbar />
<LandingHero />
<LandingContent />
Expand Down
2 changes: 1 addition & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ export default function RootLayout({
<html lang="en">
<link rel="icon" href="/logo.png" sizes="any" />
<CrispProvider />
<NextTopLoader />
<body
className={`${geistSans.variable} dark:bg-black ${geistMono.variable} antialiased`}
>
<NextTopLoader showSpinner={false} />
<ModalProvider />
<ToasterProvider />
{children}
Expand Down

0 comments on commit 189611e

Please sign in to comment.