mirror of
https://github.com/vercel/commerce.git
synced 2025-04-29 06:17:50 +00:00
chore: footer
This commit is contained in:
parent
458391a882
commit
3f3d4a8bcc
@ -15,7 +15,7 @@ export default function HomePage() {
|
|||||||
<>
|
<>
|
||||||
<ThreeItemGrid />
|
<ThreeItemGrid />
|
||||||
<Carousel />
|
<Carousel />
|
||||||
<Footer />
|
{/* <Footer /> */}
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -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>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -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 /> */}
|
||||||
</>
|
</>
|
||||||
);
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user