Update app/categories/page.tsx
This commit is contained in:
parent
5a7d0a1e13
commit
d58fe658a8
|
|
@ -0,0 +1,23 @@
|
||||||
|
import { Container } from "@/components/container";
|
||||||
|
import { Heading } from "@/components/heading";
|
||||||
|
import { Categories } from "@/components/categories";
|
||||||
|
import { Footer } from "@/components/footer";
|
||||||
|
|
||||||
|
export default function CategoriesPage() {
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<section className="py-12 border-b">
|
||||||
|
<Container>
|
||||||
|
<Heading className="mb-2">Browse by Category</Heading>
|
||||||
|
<p className="text-neutral-600 dark:text-neutral-400">
|
||||||
|
Find the perfect furniture for every room in your home
|
||||||
|
</p>
|
||||||
|
</Container>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<Categories />
|
||||||
|
|
||||||
|
<Footer />
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue