24 lines
630 B
TypeScript
24 lines
630 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|