import { Product } from "@/lib/product"; export const products = [ // Sheet goods new Product(25, {l: 4, w : 8, u: "ft"}, { name: "Plywood 1/4\"" }), new Product(20, {l: 4, w : 8, u: "ft"}, { name: "Plywood 1/2\"" }), new Product(25, {l: 4, w : 8, u: "ft"}, { name: "Plywood 3/4\"" }), new Product(5, {l: 4, w : 8, u: "ft"}, { name: "Thin Panel Board" }), new Product(10, {l: 4, w : 8, u: "ft"}, { name: "Sheetrock" }), new Product(15, {l: 4, w : 8, u: "ft"}, { name: "OSB / Particle" }), new Product(20, {l: 4, w : 8, u: "ft"}, { name: "MDF" }), new Product(15, {l: 4, w : 8, u: "ft"}, { name: "Pegboard" }), new Product(5, {l: 3, w : 5, u: "ft"}, { name: "Cement" }), // trim new Product(1, {l: 0.50, u : "ft"}, { name: "trim <= 3 inches" }), new Product(1, {l: 0.75, u : "ft"}, { name: "trim > 3 inches" }), // siding new Product(1, {l: 1, u: "ft"}, {name: "house siding"}), new Product(1, {l: 1, u: "ft"}, {name: "metal / shelf bars"}), new Product(0.5, {l: 1, u: "ft"}, {name: "gutter spouts"}), ];