chore: footer

This commit is contained in:
karl 2025-03-28 15:34:03 -04:00
parent 458391a882
commit 3f3d4a8bcc
3 changed files with 12 additions and 12 deletions

View File

@ -15,7 +15,7 @@ export default function HomePage() {
<> <>
<ThreeItemGrid /> <ThreeItemGrid />
<Carousel /> <Carousel />
<Footer /> {/* <Footer /> */}
</> </>
) )
} }

View File

@ -107,7 +107,7 @@ export default async function ProductPage(props: {
</div> </div>
<RelatedProducts id={product.id} /> <RelatedProducts id={product.id} />
</div> </div>
<Footer /> {/* <Footer /> */}
</ProductProvider> </ProductProvider>
) )
} }

View File

@ -1,14 +1,14 @@
import Footer from 'components/layout/footer'; import Footer from 'components/layout/footer'
import Collections from 'components/layout/search/collections'; import Collections from 'components/layout/search/collections'
import FilterList from 'components/layout/search/filter'; import FilterList from 'components/layout/search/filter'
import { sorting } from 'lib/constants'; import { sorting } from 'lib/constants'
import ChildrenWrapper from './children-wrapper'; import ChildrenWrapper from './children-wrapper'
import { Suspense } from 'react'; import { Suspense } from 'react'
export default function SearchLayout({ export default function SearchLayout({
children children,
}: { }: {
children: React.ReactNode; children: React.ReactNode
}) { }) {
return ( return (
<> <>
@ -25,7 +25,7 @@ export default function SearchLayout({
<FilterList list={sorting} title="Sort by" /> <FilterList list={sorting} title="Sort by" />
</div> </div>
</div> </div>
<Footer /> {/* <Footer /> */}
</> </>
); )
} }