тут нихуя не работает, ебаный рот этого казино

This commit is contained in:
User
2025-01-08 15:14:15 +03:00
parent 847102e843
commit 8c4c3f2e38
56 changed files with 1448 additions and 267 deletions

View File

@@ -1,23 +1,21 @@
import { ProductGrid } from "@/components/product-grid"
import { Header } from "@/components/header"
import { Banner } from "@/components/banner"
import { ProductFilters } from "@/components/product-filters"
import { Footer } from "@/components/footer"
import { SAMPLE_PRODUCTS } from "@/lib/sample-products"
export default function HomePage() {
return (
<>
<div className="container mx-auto px-4 py-8">
<Header/>
<div className="container mx-auto py-8">
<Banner />
<div className="my-8 flex gap-8">
<ProductFilters />
<div className="my-8 flex flex-col md:flex-row gap-8">
<div className="w-full md:w-64">
<ProductFilters />
</div>
<div className="flex-1">
<h2 className="text-2xl font-bold mb-6">Специальные предложения!</h2>
<ProductGrid />
<ProductGrid products={SAMPLE_PRODUCTS} />
</div>
</div>
</div>