Update app/categories/page.tsx

This commit is contained in:
kleap-admin 2026-01-18 13:40:23 +00:00
parent 5a7d0a1e13
commit d58fe658a8
1 changed files with 23 additions and 0 deletions

23
app/categories/page.tsx Normal file
View File

@ -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 />
</>
);
}