Add selling by grams pricing information
This commit is contained in:
26
app/page.tsx
26
app/page.tsx
@@ -205,8 +205,10 @@ export default function Home() {
|
|||||||
})()}
|
})()}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
{/* Pricing Information */}
|
||||||
|
<div className="mb-6 space-y-4">
|
||||||
{/* Reusable Spool Price Notice */}
|
{/* Reusable Spool Price Notice */}
|
||||||
<div className="mb-6 p-4 bg-blue-50 dark:bg-blue-900/20 border border-blue-200 dark:border-blue-800 rounded-lg">
|
<div className="p-4 bg-blue-50 dark:bg-blue-900/20 border border-blue-200 dark:border-blue-800 rounded-lg">
|
||||||
<div className="flex items-center justify-center gap-2">
|
<div className="flex items-center justify-center gap-2">
|
||||||
<svg className="w-5 h-5 text-blue-600 dark:text-blue-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
<svg className="w-5 h-5 text-blue-600 dark:text-blue-400" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||||
@@ -217,6 +219,28 @@ export default function Home() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{/* Selling by Grams Notice */}
|
||||||
|
<div className="p-4 bg-green-50 dark:bg-green-900/20 border border-green-200 dark:border-green-800 rounded-lg">
|
||||||
|
<div className="flex flex-col items-center gap-3 text-center">
|
||||||
|
<div className="flex items-center justify-center gap-2">
|
||||||
|
<svg className="w-5 h-5 text-green-600 dark:text-green-400 flex-shrink-0" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||||
|
<path strokeLinecap="round" strokeLinejoin="round" strokeWidth={2} d="M3 6l3 1m0 0l-3 9a5.002 5.002 0 006.001 0M6 7l3 9M6 7l6-2m6 2l3-1m-3 1l-3 9a5.002 5.002 0 006.001 0M18 7l3 9m-3-9l-6-2m0-2v2m0 16V5m0 16H9m3 0h3" />
|
||||||
|
</svg>
|
||||||
|
<span className="text-green-800 dark:text-green-200 font-semibold">
|
||||||
|
Prodaja filamenta na grame - idealno za testiranje materijala ili manje projekte
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex flex-wrap justify-center gap-4 text-sm">
|
||||||
|
<span className="text-green-700 dark:text-green-300 font-medium">50gr - 299 RSD</span>
|
||||||
|
<span className="text-gray-400 dark:text-gray-600">•</span>
|
||||||
|
<span className="text-green-700 dark:text-green-300 font-medium">100gr - 499 RSD</span>
|
||||||
|
<span className="text-gray-400 dark:text-gray-600">•</span>
|
||||||
|
<span className="text-green-700 dark:text-green-300 font-medium">200gr - 949 RSD</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<FilamentTableV2
|
<FilamentTableV2
|
||||||
key={resetKey}
|
key={resetKey}
|
||||||
filaments={filaments}
|
filaments={filaments}
|
||||||
|
|||||||
Reference in New Issue
Block a user