From 3bb3144eff5128d76ae303bd1bd051c8cb79c472 Mon Sep 17 00:00:00 2001 From: Sam Becker Date: Fri, 19 Apr 2024 09:22:39 -0500 Subject: [PATCH] Reenable homepage animation --- src/app/page.tsx | 1 - src/site/NavClient.tsx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index caa48fd5..9c3d681e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,6 @@ export default async function HomePage() { ?
diff --git a/src/site/NavClient.tsx b/src/site/NavClient.tsx index d323511c..87015bba 100644 --- a/src/site/NavClient.tsx +++ b/src/site/NavClient.tsx @@ -16,7 +16,7 @@ import AnimateItems from '../components/AnimateItems'; export default function NavClient({ showAdmin, - animate, + animate = true, }: { showAdmin?: boolean, animate?: boolean,