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 />
<Carousel />
<Footer />
{/* <Footer /> */}
</>
)
}

View File

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

View File

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