2024-06-28 15:04:50 +02:00
|
|
|
import { Product } from "@/lib/product";
|
|
|
|
|
|
|
|
export const products = [
|
|
|
|
// Sheet goods
|
2024-06-28 23:53:48 +02:00
|
|
|
new Product(25, {l: 4, w : 8, u: "feet"}, { name: "Plywood" }),
|
|
|
|
new Product(35, {l: 4, w : 8, u: "feet"}, { name: "MDF" }),
|
|
|
|
new Product(40, {l: 4, w : 8, u: "feet"}, { name: "OSB" }),
|
|
|
|
new Product(45, {l: 4, w : 8, u: "feet"}, { name: "Sheetrock" }),
|
2024-06-28 15:04:50 +02:00
|
|
|
// Beams and trim
|
2024-06-28 23:53:48 +02:00
|
|
|
new Product(1, {l: 0.50, u : "feet"}, { name: "trim 3 inches" }),
|
|
|
|
new Product(1, {l: 0.75, u : "feet"}, { name: "trim 3 inches" }),
|
2024-06-28 15:04:50 +02:00
|
|
|
];
|