23 lines
738 B
TypeScript
23 lines
738 B
TypeScript
import { ProductGrid } from "@/components/product-grid"
|
||
import { ProductFilters } from "@/components/product-filters"
|
||
import { SAMPLE_PRODUCTS } from "@/lib/sample-products"
|
||
|
||
export default function SoftwarePage() {
|
||
const softwareProducts = SAMPLE_PRODUCTS.filter(product => product.category === 'software')
|
||
|
||
return (
|
||
<div className="container mx-auto py-8">
|
||
<h1 className="text-2xl font-bold mb-6">Программное обеспечение</h1>
|
||
<div className="flex flex-col md:flex-row gap-8">
|
||
<div className="w-full md:w-64">
|
||
<ProductFilters />
|
||
</div>
|
||
<div className="flex-1">
|
||
<ProductGrid products={softwareProducts} />
|
||
</div>
|
||
</div>
|
||
</div>
|
||
)
|
||
}
|
||
|