From 52098a3e5011cb405a71b32c84e098f8c603d484 Mon Sep 17 00:00:00 2001 From: k00b Date: Mon, 9 Dec 2024 19:03:30 -0600 Subject: [PATCH] fix broken static header from carousel --- components/nav/static.js | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/components/nav/static.js b/components/nav/static.js index 9f453df0..68400f1e 100644 --- a/components/nav/static.js +++ b/components/nav/static.js @@ -1,19 +1,22 @@ import { Container, Nav, Navbar } from 'react-bootstrap' import styles from '../header.module.css' import { BackOrBrand, NavPrice, SearchItem } from './common' +import { CarouselProvider } from './carousel' export default function StaticHeader () { return ( - - - - - + + + + + + + ) }