1226 lines
44 KiB
TypeScript
1226 lines
44 KiB
TypeScript
export type NavItem = {
|
||
label: string;
|
||
href: string;
|
||
};
|
||
|
||
export type FooterGroup = {
|
||
title: string;
|
||
links: NavItem[];
|
||
};
|
||
|
||
export type MaterialItem = {
|
||
slug: string;
|
||
name: string;
|
||
category: "masonry" | "landscaping";
|
||
subcategory: string;
|
||
image: string;
|
||
description: string;
|
||
purchaseUnit: string;
|
||
availabilityNote?: string;
|
||
featured: boolean;
|
||
tags: string[];
|
||
};
|
||
|
||
export type ReviewItem = {
|
||
name: string;
|
||
rating: string;
|
||
dateLabel: string;
|
||
quote: string;
|
||
};
|
||
|
||
export type ProcessStep = {
|
||
step: string;
|
||
title: string;
|
||
description: string;
|
||
};
|
||
|
||
export const siteConfig = {
|
||
name: "Southern Masonry Supply",
|
||
siteUrl: "https://www.southernmasonrysupply.com",
|
||
description:
|
||
"Southern Masonry Supply is a family-owned-and-operated business serving Corpus Christi, TX and its surrounding cities since 1990.",
|
||
cityRegion: "Corpus Christi, TX",
|
||
brand: {
|
||
primaryLogo: "/logo_v2.png",
|
||
alt: "Southern Masonry Supply, Corpus Christi, TX",
|
||
},
|
||
heroMedia: {
|
||
featureCardVideo: "/herosection/Flow_delpmaspu_.mp4",
|
||
featureCardImage:
|
||
"/herosection/A_massive_perfectly_organized_masonry_supply_yard__delpmaspu.webp",
|
||
featureCardAlt: "Southern Masonry Supply yard overview",
|
||
},
|
||
phoneDisplay: "(361) 289-1074",
|
||
phoneHref: "tel:+13612891074",
|
||
defaultOgImage: "/images/hero_main.png",
|
||
mapUrl:
|
||
"https://www.google.com/maps/search/?api=1&query=5205+Agnes+St+Corpus+Christi+TX+78405",
|
||
address: {
|
||
street: "5205 Agnes St",
|
||
cityStateZip: "Corpus Christi, TX 78405",
|
||
},
|
||
hours: [
|
||
{ label: "Monday - Friday", value: "8 AM - 5 PM" },
|
||
{ label: "Saturday", value: "Closed" },
|
||
{ label: "Sunday", value: "Closed" },
|
||
],
|
||
socials: [
|
||
{
|
||
label: "Facebook",
|
||
href: "https://www.facebook.com/southernmasonrysupply/",
|
||
},
|
||
{
|
||
label: "Instagram",
|
||
href: "https://www.instagram.com/southernmasonrysupply/",
|
||
},
|
||
],
|
||
nav: [
|
||
{ label: "Home", href: "/" },
|
||
{ label: "Products", href: "/products" },
|
||
{ label: "Masonry Supplies", href: "/masonry-supplies" },
|
||
{ label: "Landscaping Supplies", href: "/landscaping-supplies" },
|
||
{ label: "About", href: "/about" },
|
||
{ label: "Contact", href: "/contact" },
|
||
] satisfies NavItem[],
|
||
footerGroups: [
|
||
{
|
||
title: "Explore",
|
||
links: [
|
||
{ label: "Home", href: "/" },
|
||
{ label: "Products", href: "/products" },
|
||
{ label: "About", href: "/about" },
|
||
{ label: "Contact", href: "/contact" },
|
||
],
|
||
},
|
||
{
|
||
title: "Products",
|
||
links: [
|
||
{ label: "Masonry Supplies", href: "/masonry-supplies" },
|
||
{ label: "Landscaping Supplies", href: "/landscaping-supplies" },
|
||
{ label: "Delivery Information", href: "/contact" },
|
||
],
|
||
},
|
||
{
|
||
title: "Follow",
|
||
links: [
|
||
{
|
||
label: "Facebook",
|
||
href: "https://www.facebook.com/southernmasonrysupply/",
|
||
},
|
||
{
|
||
label: "Instagram",
|
||
href: "https://www.instagram.com/southernmasonrysupply/",
|
||
},
|
||
],
|
||
},
|
||
] satisfies FooterGroup[],
|
||
};
|
||
|
||
export const homeStats = [
|
||
{ value: "34+", label: "Years Serving South Texas" },
|
||
{ value: "1,000+", label: "Satisfied Customers" },
|
||
{ value: "Large", label: "Product Selection" },
|
||
{ value: "Fast & Direct", label: "Quote Turnaround" },
|
||
];
|
||
|
||
export const trustPillars = [
|
||
{
|
||
icon: "◎",
|
||
title: "Local sourcing insight",
|
||
description:
|
||
"We stock materials sourced in the United States and Mexico to keep quality high and selections practical.",
|
||
},
|
||
{
|
||
icon: "▲",
|
||
title: "Expert project advice",
|
||
description:
|
||
"Our team helps you choose from masonry tools, flagstone, pebbles, and aggregates based on application and finish.",
|
||
},
|
||
{
|
||
icon: "↗",
|
||
title: "Reliable delivery support",
|
||
description:
|
||
"Delivery is available and quoted at time of purchase, with clear minimums for flagstone and landscaping aggregates.",
|
||
},
|
||
];
|
||
|
||
export const categoryHighlights = [
|
||
{
|
||
eyebrow: "Masonry",
|
||
title: "Tools, cement, and the essentials that keep crews moving.",
|
||
description:
|
||
"Bagged cement, masonry tools, and ready-to-quote supply options for project phases that cannot afford downtime.",
|
||
href: "/masonry-supplies",
|
||
image: "/images/masonry_tools_display_png_1773134531475.webp",
|
||
},
|
||
{
|
||
eyebrow: "Landscaping",
|
||
title: "Flagstone, pebbles, aggregates, and natural stone with range.",
|
||
description:
|
||
"Landscape material options from decomposed granite to Mexico pebbles and Arkansas or Oklahoma flagstone.",
|
||
href: "/landscaping-supplies",
|
||
image: "/images/flagstone_pathway_garden_png_1773134755795.webp",
|
||
},
|
||
];
|
||
|
||
export const serviceHighlights = [
|
||
{
|
||
title: "Masonry tools and cement",
|
||
description:
|
||
"Bagged cement, core tools, and quote-ready materials for jobs that need dependable turnaround.",
|
||
},
|
||
{
|
||
title: "Landscape stone and aggregates",
|
||
description:
|
||
"Pebbles, decomposed granite, sand, gravel, flagstone, and statement stone for outdoor projects.",
|
||
},
|
||
{
|
||
title: "Contractor-friendly support",
|
||
description:
|
||
"We keep the conversation practical around finish, quantity, and timing instead of generic product talk.",
|
||
},
|
||
{
|
||
title: "Clear delivery thresholds",
|
||
description:
|
||
"Flagstone starts at one ton and landscaping aggregates start at three yards for delivery.",
|
||
},
|
||
{
|
||
title: "Helpful yard pickup guidance",
|
||
description:
|
||
"Homeowners and crews both get straightforward advice on what to load, how much to buy, and what to expect.",
|
||
},
|
||
];
|
||
|
||
export const googleReviews: ReviewItem[] = [
|
||
{
|
||
name: "Josh Jimenez",
|
||
rating: "5/5",
|
||
dateLabel: "9 months ago",
|
||
quote:
|
||
"Very professional. My second time using them and I highly recommend the business. Questions were answered quickly and delivery was exactly as promised.",
|
||
},
|
||
{
|
||
name: "Dana",
|
||
rating: "5/5",
|
||
dateLabel: "3 years ago",
|
||
quote:
|
||
"I highly recommend this establishment. Alfonso went above and beyond helping find the right rocks for the project.",
|
||
},
|
||
{
|
||
name: "Deborah Pena",
|
||
rating: "5/5",
|
||
dateLabel: "4 years ago",
|
||
quote:
|
||
"My son had been looking all over town for brick. The sales rep was great, the prices were amazing, and they came back for more materials to finish the project.",
|
||
},
|
||
{
|
||
name: "Patty Beasley",
|
||
rating: "5/5",
|
||
dateLabel: "5 years ago",
|
||
quote:
|
||
"A wonderful place with assortments of beautiful stone that are hard to find at other local or regional landscapers.",
|
||
},
|
||
{
|
||
name: "Lucy",
|
||
rating: "4/5",
|
||
dateLabel: "4 months ago",
|
||
quote:
|
||
"A bit expensive compared to other places, but the workers were really nice and helpful.",
|
||
},
|
||
{
|
||
name: "Joe Helgerson",
|
||
rating: "5/5",
|
||
dateLabel: "2 years ago",
|
||
quote:
|
||
"Wide selection of landscaping stone. Easy to work with and competitive pricing.",
|
||
},
|
||
];
|
||
|
||
export const processSteps: ProcessStep[] = [
|
||
{
|
||
step: "01",
|
||
title: "Tell us what the job needs",
|
||
description:
|
||
"Call, stop by, or send a request with the material type, approximate quantity, and whether pickup or delivery makes more sense.",
|
||
},
|
||
{
|
||
step: "02",
|
||
title: "Get material guidance",
|
||
description:
|
||
"We help narrow the options based on application, finish, and load size so you are not guessing between similar products.",
|
||
},
|
||
{
|
||
step: "03",
|
||
title: "Confirm quantity and routing",
|
||
description:
|
||
"The team confirms purchase units, delivery minimums, and destination-based freight details before anything is scheduled.",
|
||
},
|
||
{
|
||
step: "04",
|
||
title: "Load out or dispatch delivery",
|
||
description:
|
||
"Yard pickups move quickly and delivery orders are staged for the timing and thresholds discussed at purchase.",
|
||
},
|
||
{
|
||
step: "05",
|
||
title: "Finish with confidence",
|
||
description:
|
||
"You leave with the right material, a clear plan for the next phase, and a local yard you can call back when the scope grows.",
|
||
},
|
||
];
|
||
|
||
export const deliveryHighlights = [
|
||
{
|
||
title: "Flagstone delivery",
|
||
description:
|
||
"Delivery service for flagstone starts at a one-ton minimum.",
|
||
},
|
||
{
|
||
title: "Landscaping aggregates",
|
||
description:
|
||
"Aggregates require a three-yard minimum for delivery service.",
|
||
},
|
||
{
|
||
title: "Quoted by destination",
|
||
description:
|
||
"Delivery charges depend on where materials need to go and are quoted at time of purchase.",
|
||
},
|
||
];
|
||
|
||
export const buildStory = [
|
||
{
|
||
eyebrow: "What we do",
|
||
title: "A yard built for masonry and landscaping work.",
|
||
copy:
|
||
"Southern Masonry Supply is a family-owned-and-operated business that offers a large selection of masonry products and tools. We have proudly served Corpus Christi and surrounding cities since 1990.",
|
||
},
|
||
{
|
||
eyebrow: "How we operate",
|
||
title: "Fast stock support and dependable service.",
|
||
copy:
|
||
"We take pride in customer service and do our best to keep products in stock for fast delivery, smoother pickups, and fewer surprises once your project is underway.",
|
||
},
|
||
{
|
||
eyebrow: "Why it matters",
|
||
title: "Materials chosen for durability, not guesswork.",
|
||
copy:
|
||
"We offer products sourced in the United States and Mexico so contractors, designers, and homeowners can choose materials with confidence and get practical guidance during the purchase process.",
|
||
},
|
||
];
|
||
|
||
export const aboutHighlights = [
|
||
{
|
||
icon: "◌",
|
||
title: "Family-owned attention",
|
||
description:
|
||
"The yard runs with a hands-on, local-business mindset focused on helpful service instead of anonymous transactions.",
|
||
},
|
||
{
|
||
icon: "✦",
|
||
title: "Strong regional selection",
|
||
description:
|
||
"Core categories include masonry tools, flagstone, decomposed granite, pebbles, sand, gravel, and boulders.",
|
||
},
|
||
{
|
||
icon: "↺",
|
||
title: "Flexible buying formats",
|
||
description:
|
||
"Ground cover can be purchased by the shovel, by the pound, by the yard, or by bulk bag depending on the material.",
|
||
},
|
||
];
|
||
|
||
export const masonryCategory = {
|
||
title: "Masonry supplies for work that needs to stay on schedule.",
|
||
description:
|
||
"From bagged cement to core tools, our masonry catalog keeps the essentials organized for fast quoting and easy follow-up.",
|
||
intro:
|
||
"Use the filters to narrow down masonry tools and cement options. Every product card points directly into the contact flow for quoting.",
|
||
deliveryNote:
|
||
"Need delivery? Reach out with the material, quantity, and job timing so we can confirm availability and routing.",
|
||
heroImage: "/Closeup_macro_shot_of_a_weathered_brick_wall_under_delpmaspu.webp",
|
||
};
|
||
|
||
export const landscapingCategory = {
|
||
title: "Landscaping supplies with natural color, texture, and buying flexibility.",
|
||
description:
|
||
"Browse pebbles, flagstone, granite, sand, gravel, and boulders suited for both decorative and hardscape applications.",
|
||
intro:
|
||
"The landscaping catalog is structured by material type so you can quickly move from inspiration to a concrete quote request.",
|
||
deliveryNote:
|
||
"Landscaping aggregate delivery starts at three yards, and destination-based delivery pricing is quoted at purchase time.",
|
||
heroImage: "/Low_angle_shot_of_smooth_multicolor_river_pebbles__delpmaspu.webp",
|
||
};
|
||
|
||
export const masonryMaterials: MaterialItem[] = [
|
||
{
|
||
slug: "jag-clamp-line-stretcher",
|
||
name: "JAG Clamp Line Stretcher",
|
||
category: "masonry",
|
||
subcategory: "Masonry Tools",
|
||
image: "/masonrytools/2-1024x5771.jpg",
|
||
description:
|
||
"Award-winning line stretcher system that clamps directly to brick or block for safe, accurate course layout.",
|
||
purchaseUnit: "Quoted by item",
|
||
availabilityNote: "Call for current tool availability.",
|
||
featured: true,
|
||
tags: ["tools"],
|
||
},
|
||
{
|
||
slug: "crick-level",
|
||
name: "Crick Level",
|
||
category: "masonry",
|
||
subcategory: "Masonry Tools",
|
||
image: "/masonrytools/thumbnail_20191106_083544-1024x5762.jpg",
|
||
description:
|
||
"Professional wood-frame mason's level built for accurate plumb and level readings on block and brick work.",
|
||
purchaseUnit: "Quoted by item",
|
||
availabilityNote: "Call for current tool availability.",
|
||
featured: true,
|
||
tags: ["tools", "levels"],
|
||
},
|
||
{
|
||
slug: "hard-hats",
|
||
name: "Hard Hats",
|
||
category: "masonry",
|
||
subcategory: "Masonry Tools",
|
||
image: "/masonrytools/thumbnail_20191106_083757-1024x5763.jpg",
|
||
description:
|
||
"OSHA-compliant jobsite hard hats including Texas and American flag styles for crew safety on every project.",
|
||
purchaseUnit: "Quoted by item",
|
||
availabilityNote: "Call for current availability.",
|
||
featured: false,
|
||
tags: ["tools", "safety"],
|
||
},
|
||
{
|
||
slug: "masons-line",
|
||
name: "Mason's Line",
|
||
category: "masonry",
|
||
subcategory: "Masonry Tools",
|
||
image: "/masonrytools/thumbnail_20191106_083933-1024x5764.jpg",
|
||
description:
|
||
"Braided nylon mason's line for course layout and alignment — available in high-visibility colors from W. Rose.",
|
||
purchaseUnit: "Quoted by item",
|
||
availabilityNote: "Call for current availability.",
|
||
featured: true,
|
||
tags: ["tools", "line"],
|
||
},
|
||
{
|
||
slug: "marking-chalk",
|
||
name: "Marking Chalk",
|
||
category: "masonry",
|
||
subcategory: "Masonry Tools",
|
||
image: "/masonrytools/thumbnail_20191106_095116-1024x5765.jpg",
|
||
description:
|
||
"Keson ultra-fine marking chalk in red and blue for snapping precise layout lines on masonry and concrete surfaces.",
|
||
purchaseUnit: "Quoted by item",
|
||
availabilityNote: "Call for current availability.",
|
||
featured: false,
|
||
tags: ["tools", "marking"],
|
||
},
|
||
{
|
||
slug: "torpedo-level",
|
||
name: "Torpedo Level",
|
||
category: "masonry",
|
||
subcategory: "Masonry Tools",
|
||
image: "/masonrytools/thumbnail_20191106_095340-1024x5766.jpg",
|
||
description:
|
||
"Magnetic torpedo levels for quick horizontal and vertical checks — available in 8 in. and 9 in. sizes.",
|
||
purchaseUnit: "Quoted by item",
|
||
availabilityNote: "Call for current availability.",
|
||
featured: false,
|
||
tags: ["tools", "levels"],
|
||
},
|
||
{
|
||
slug: "carpenter-pencils",
|
||
name: "Carpenter Pencils",
|
||
category: "masonry",
|
||
subcategory: "Masonry Tools",
|
||
image: "/masonrytools/thumbnail_20191106_100250-1024x5767.jpg",
|
||
description:
|
||
"Bon flat carpenter pencils with strong flat lead — stocked in both red and black lead for jobsite marking.",
|
||
purchaseUnit: "Quoted by item",
|
||
availabilityNote: "Call for current availability.",
|
||
featured: false,
|
||
tags: ["tools", "marking"],
|
||
},
|
||
{
|
||
slug: "marking-crayons-accessories",
|
||
name: "Marking Crayons & Accessories",
|
||
category: "masonry",
|
||
subcategory: "Masonry Tools",
|
||
image: "/masonrytools/thumbnail_20191106_100308-1024x5768.jpg",
|
||
description:
|
||
"Col-Erase pencils, pencil clips, and marking crayons in red, blue, and yellow for all layout and field marking needs.",
|
||
purchaseUnit: "Quoted by item",
|
||
availabilityNote: "Call for current availability.",
|
||
featured: false,
|
||
tags: ["tools", "marking"],
|
||
},
|
||
{
|
||
slug: "crick-level-full-size",
|
||
name: "Crick Level — Full Size",
|
||
category: "masonry",
|
||
subcategory: "Masonry Tools",
|
||
image: "/masonrytools/thumbnail_20210913_0953139.jpg",
|
||
description:
|
||
"Full-size Crick mason's levels stocked in multiple lengths for every stage of block and brick installation.",
|
||
purchaseUnit: "Quoted by item",
|
||
availabilityNote: "Call for current tool availability.",
|
||
featured: true,
|
||
tags: ["tools", "levels"],
|
||
},
|
||
// ── Bagged Cement ──────────────────────────────────────────────────────────
|
||
{
|
||
slug: "alamo-masonry-cement-pallet",
|
||
name: "Alamo Masonry Cement — Pallet Stack",
|
||
category: "masonry",
|
||
subcategory: "Bagged Cement",
|
||
image: "/baggedcement/124621322_1044010109369867_1789124923342669301_n-1024x760.jpg",
|
||
description:
|
||
"Full palletized stack of Alamo masonry cement. Reliable base mix for block and brick construction across San Antonio.",
|
||
purchaseUnit: "Quoted by pallet or bag",
|
||
availabilityNote: "Call for current stock and pricing.",
|
||
featured: true,
|
||
tags: ["cement", "bagged", "alamo"],
|
||
},
|
||
{
|
||
slug: "alamo-masonry-cement-type-s-orange",
|
||
name: "Alamo Masonry Cement — Type S (Orange Bag)",
|
||
category: "masonry",
|
||
subcategory: "Bagged Cement",
|
||
image: "/baggedcement/124633699_794688728042730_8896789977779663103_n-1024x926.jpg",
|
||
description:
|
||
"High-strength Type S masonry cement in the distinctive orange bag. Preferred for structural load-bearing walls and below-grade work.",
|
||
purchaseUnit: "Quoted by bag or pallet",
|
||
availabilityNote: "Call for current stock and pricing.",
|
||
featured: true,
|
||
tags: ["cement", "bagged", "alamo", "type-s"],
|
||
},
|
||
{
|
||
slug: "alamo-white-portland-cement",
|
||
name: "Alamo White Portland Cement",
|
||
category: "masonry",
|
||
subcategory: "Bagged Cement",
|
||
image: "/baggedcement/341181804_751803226560427_305481664816712952_n.jpg",
|
||
description:
|
||
"Alamo White Portland cement for architectural concrete and decorative masonry where a bright, white finish is required.",
|
||
purchaseUnit: "Quoted by bag or pallet",
|
||
availabilityNote: "Call for current stock and pricing.",
|
||
featured: false,
|
||
tags: ["cement", "bagged", "alamo", "white", "portland"],
|
||
},
|
||
{
|
||
slug: "alamo-masonry-cement-bag",
|
||
name: "Alamo Masonry Cement — Single Bag",
|
||
category: "masonry",
|
||
subcategory: "Bagged Cement",
|
||
image: "/baggedcement/341230370_168526982801018_5550882254119213617_n.jpg",
|
||
description:
|
||
"Standard 70lb Alamo masonry cement bag. The reliable standard for masonry projects in the San Antonio area.",
|
||
purchaseUnit: "Quoted by bag",
|
||
availabilityNote: "In-stock for immediate pickup.",
|
||
featured: false,
|
||
tags: ["cement", "bagged", "alamo"],
|
||
},
|
||
{
|
||
slug: "alamo-white-masonry-cement",
|
||
name: "Alamo White Masonry Cement",
|
||
category: "masonry",
|
||
subcategory: "Bagged Cement",
|
||
image: "/baggedcement/341646099_182080524652887_1302135867891546997_n.jpg",
|
||
description:
|
||
"Alamo specialty white masonry cement (Type N) for light-colored mortar joints and architectural block applications.",
|
||
purchaseUnit: "Quoted by bag or pallet",
|
||
availabilityNote: "Call for color-matching and bulk orders.",
|
||
featured: true,
|
||
tags: ["cement", "bagged", "alamo", "white", "masonry"],
|
||
},
|
||
{
|
||
slug: "alamo-portland-limestone-type-il",
|
||
name: "Alamo Portland-Limestone Cement — Type IL",
|
||
category: "masonry",
|
||
subcategory: "Bagged Cement",
|
||
image: "/baggedcement/thumbnail_20220811_103223.jpg",
|
||
description:
|
||
"Type IL Portland-Limestone cement (92.6 lb). A blended cement eco-alternative providing strong set performance with reduced CO2 footprint.",
|
||
purchaseUnit: "Quoted by bag or pallet",
|
||
availabilityNote: "Call for availability.",
|
||
featured: true,
|
||
tags: ["cement", "bagged", "alamo", "type-il", "ecofriendly"],
|
||
},
|
||
{
|
||
slug: "alamo-masonry-cement-stock",
|
||
name: "Alamo Masonry Cement — Large Stock",
|
||
category: "masonry",
|
||
subcategory: "Bagged Cement",
|
||
image: "/baggedcement/thumbnail_20220811_103245.jpg",
|
||
description:
|
||
"Extended yard stock of Alamo masonry cement. We maintain high inventory levels for large commercial projects.",
|
||
purchaseUnit: "Quoted by pallet",
|
||
availabilityNote: "Large orders always welcome.",
|
||
featured: false,
|
||
tags: ["cement", "bagged", "alamo"],
|
||
},
|
||
{
|
||
slug: "alamo-white-portland-type-1",
|
||
name: "Alamo White Portland Cement — Type 1",
|
||
category: "masonry",
|
||
subcategory: "Bagged Cement",
|
||
image: "/baggedcement/thumbnail_20220811_103305.jpg",
|
||
description:
|
||
"Alamo White Portland Cement Type 1. Premium high-purity architectural cement for custom precast, cast-in-place, and decorative work.",
|
||
purchaseUnit: "Quoted by bag or pallet",
|
||
availabilityNote: "Call for commercial volume pricing.",
|
||
featured: true,
|
||
tags: ["cement", "bagged", "alamo", "white-portland", "type-1"],
|
||
},
|
||
];
|
||
|
||
export const landscapingMaterials: MaterialItem[] = [
|
||
// ── Mexico Beach Pebbles ───────────────────────────────────────────────────
|
||
{
|
||
slug: "mexico-beach-pebbles-multicolor-1-2",
|
||
name: "1\" - 2\" Mexico Beach Pebbles Multicolor",
|
||
category: "landscaping",
|
||
subcategory: "Mexico Beach Pebbles",
|
||
image: "/mexicobeachpebbles/280782259_3262766134007984_7989147786748639370_n.jpg",
|
||
description:
|
||
"Rounded 1\"–2\" multicolor pebbles in natural tones of tan, purple, gray, and red. Ideal for decorative beds and hardscape borders.",
|
||
purchaseUnit: "Quoted by pound, yard, or bulk bag",
|
||
featured: true,
|
||
tags: ["pebbles", "mexico-pebbles", "multicolor"],
|
||
},
|
||
{
|
||
slug: "mexico-beach-pebbles-large-multicolor",
|
||
name: "Mexico Beach Pebbles — Large Multicolor",
|
||
category: "landscaping",
|
||
subcategory: "Mexico Beach Pebbles",
|
||
image: "/mexicobeachpebbles/thumbnail_20200819_135939.jpg",
|
||
description:
|
||
"Larger-sized Mexico Beach pebbles in a full range of natural colors. Adds bold texture to landscape features and accent zones.",
|
||
purchaseUnit: "Quoted by pound, yard, or bulk bag",
|
||
featured: false,
|
||
tags: ["pebbles", "mexico-pebbles", "multicolor"],
|
||
},
|
||
{
|
||
slug: "mexico-beach-pebbles-slim-blend",
|
||
name: "Mexico Beach Pebbles — Slim Blend",
|
||
category: "landscaping",
|
||
subcategory: "Mexico Beach Pebbles",
|
||
image: "/mexicobeachpebbles/thumbnail_20200716_135254.jpg",
|
||
description:
|
||
"Elongated mixed-color Mexico Beach pebbles for a softer, more natural-looking ground cover with varied shape and tone.",
|
||
purchaseUnit: "Quoted by pound, yard, or bulk bag",
|
||
featured: false,
|
||
tags: ["pebbles", "mexico-pebbles", "multicolor"],
|
||
},
|
||
{
|
||
slug: "mexico-beach-pebbles-black-40lb",
|
||
name: "Mexico Beach Pebbles — Black 40 lb. Bag",
|
||
category: "landscaping",
|
||
subcategory: "Mexico Beach Pebbles",
|
||
image: "/mexicobeachpebbles/thumbnail_20210615_141826-rotated.jpg",
|
||
description:
|
||
"Dark black Mexico Beach pebbles sold in 40 lb. mesh bags for targeted installs and touch-up work.",
|
||
purchaseUnit: "40 lb. bag",
|
||
featured: false,
|
||
tags: ["pebbles", "mexico-pebbles", "black", "bagged"],
|
||
},
|
||
{
|
||
slug: "mexico-beach-pebbles-2ton-basket",
|
||
name: "Mexico Beach Pebbles 2 Ton Basket",
|
||
category: "landscaping",
|
||
subcategory: "Mexico Beach Pebbles",
|
||
image: "/mexicobeachpebbles/20220829_090518-scaled.jpg",
|
||
description:
|
||
"2-ton pallet baskets of Mexico Beach pebbles for large-volume installs. Multiple color varieties available — call to check stock.",
|
||
purchaseUnit: "2 ton basket",
|
||
featured: true,
|
||
tags: ["pebbles", "mexico-pebbles", "bulk", "basket"],
|
||
},
|
||
{
|
||
slug: "mexico-beach-pebbles-black-bulk",
|
||
name: "Mexico Beach Pebbles — Black Bulk",
|
||
category: "landscaping",
|
||
subcategory: "Mexico Beach Pebbles",
|
||
image: "/mexicobeachpebbles/247999000_3110885482529384_6726596750678107116_n.jpg",
|
||
description:
|
||
"Bulk black Mexico Beach pebbles in large-volume baskets. Deep, consistent dark color for bold landscape contrast.",
|
||
purchaseUnit: "Quoted by ton or basket",
|
||
featured: false,
|
||
tags: ["pebbles", "mexico-pebbles", "black", "bulk"],
|
||
},
|
||
{
|
||
slug: "mexico-beach-pebbles-40lb-bags",
|
||
name: "Mexico Beach Pebbles 40 lb. Bags",
|
||
category: "landscaping",
|
||
subcategory: "Mexico Beach Pebbles",
|
||
image: "/mexicobeachpebbles/188500405_2993718674246066_2933173565393514824_n.jpg",
|
||
description:
|
||
"Mexico Beach pebbles in standard 40 lb. mesh bags for smaller jobs, touch-ups, and retail pickup.",
|
||
purchaseUnit: "40 lb. bag",
|
||
featured: false,
|
||
tags: ["pebbles", "mexico-pebbles", "bagged"],
|
||
},
|
||
{
|
||
slug: "mexico-beach-pebbles-black-2ton",
|
||
name: "Mexico Beach Pebbles — Black 2 Ton Basket",
|
||
category: "landscaping",
|
||
subcategory: "Mexico Beach Pebbles",
|
||
image: "/mexicobeachpebbles/280754678_3262764467341484_1718282480469990117_n.jpg",
|
||
description:
|
||
"Large outdoor-stacked 2-ton baskets of dark black Mexico Beach pebbles ready for commercial or large residential projects.",
|
||
purchaseUnit: "2 ton basket",
|
||
featured: false,
|
||
tags: ["pebbles", "mexico-pebbles", "black", "bulk", "basket"],
|
||
},
|
||
// ── Sand & Gravel ──────────────────────────────────────────────────────────
|
||
{
|
||
slug: "mason-sand",
|
||
name: "Mason Sand",
|
||
category: "landscaping",
|
||
subcategory: "Sand & Gravel",
|
||
image: "/sandgravel/thumbnail_20200115_154703.jpg",
|
||
description:
|
||
"Fine mason sand for mortar mixing, bedding, and leveling applications.",
|
||
purchaseUnit: "Quoted by shovel or yard",
|
||
featured: true,
|
||
tags: ["sand", "aggregates"],
|
||
},
|
||
{
|
||
slug: "masonry-sand-mix",
|
||
name: "Masonry Sand Mix",
|
||
category: "landscaping",
|
||
subcategory: "Sand & Gravel",
|
||
image: "/sandgravel/thumbnail_20200218_104001.jpg",
|
||
description:
|
||
"Blended sand and fine gravel mix for base layers, fill, and general masonry support work.",
|
||
purchaseUnit: "Quoted by shovel or yard",
|
||
featured: false,
|
||
tags: ["sand", "gravel", "aggregates"],
|
||
},
|
||
{
|
||
slug: "pea-gravel",
|
||
name: "Pea Gravel",
|
||
category: "landscaping",
|
||
subcategory: "Sand & Gravel",
|
||
image: "/sandgravel/Pea-Gravel.jpg",
|
||
description:
|
||
"Small, smooth-edged pea gravel for drainage beds, walkways, and decorative ground cover.",
|
||
purchaseUnit: "Quoted by shovel or yard",
|
||
featured: false,
|
||
tags: ["gravel", "aggregates"],
|
||
},
|
||
{
|
||
slug: "decomposed-granite",
|
||
name: "Decomposed Granite",
|
||
category: "landscaping",
|
||
subcategory: "Sand & Gravel",
|
||
image: "/sandgravel/Decomposed-Granite-2.jpg",
|
||
description:
|
||
"Compacted decomposed granite for pathways, driveways, and natural-finish ground cover.",
|
||
purchaseUnit: "Quoted by shovel or yard",
|
||
featured: false,
|
||
tags: ["granite", "aggregates"],
|
||
},
|
||
{
|
||
slug: "crushed-gravel",
|
||
name: "Crushed Gravel",
|
||
category: "landscaping",
|
||
subcategory: "Sand & Gravel",
|
||
image: "/sandgravel/thumbnail_20230523_105335.jpg",
|
||
description:
|
||
"Angular crushed gravel for drainage, base compaction, and utility fill.",
|
||
purchaseUnit: "Quoted by shovel or yard",
|
||
featured: false,
|
||
tags: ["gravel", "aggregates"],
|
||
},
|
||
{
|
||
slug: "mixed-gravel",
|
||
name: "Mixed Gravel",
|
||
category: "landscaping",
|
||
subcategory: "Sand & Gravel",
|
||
image: "/sandgravel/thumbnail_20191004_084419.jpg",
|
||
description:
|
||
"Mixed-size gravel blend for drainage, fill, and general landscape use.",
|
||
purchaseUnit: "Quoted by shovel or yard",
|
||
featured: false,
|
||
tags: ["gravel", "aggregates"],
|
||
},
|
||
{
|
||
slug: "bull-rock",
|
||
name: "Bull Rock",
|
||
category: "landscaping",
|
||
subcategory: "Sand & Gravel",
|
||
image: "/sandgravel/thumbnail_20200218_103916.jpg",
|
||
description:
|
||
"Rounded tan bull rock for drainage, retaining walls, and decorative landscape borders.",
|
||
purchaseUnit: "Quoted by shovel or yard",
|
||
featured: false,
|
||
tags: ["gravel", "aggregates", "bull-rock"],
|
||
},
|
||
{
|
||
slug: "bull-rock-1-2",
|
||
name: "Bull Rock 1-2\"",
|
||
category: "landscaping",
|
||
subcategory: "Sand & Gravel",
|
||
image: "/sandgravel/Bull-Rock-1-2.jpg",
|
||
description:
|
||
"1\"–2\" bull rock with warm tan color for drainage beds, creek features, and erosion control.",
|
||
purchaseUnit: "Quoted by shovel or yard",
|
||
featured: false,
|
||
tags: ["gravel", "aggregates", "bull-rock"],
|
||
},
|
||
{
|
||
slug: "white-marble",
|
||
name: "White Marble",
|
||
category: "landscaping",
|
||
subcategory: "Sand & Gravel",
|
||
image: "/sandgravel/White-Marble.jpg",
|
||
description:
|
||
"Bright white marble chips for high-contrast decorative beds, borders, and modern landscape features.",
|
||
purchaseUnit: "Quoted by shovel or yard",
|
||
featured: false,
|
||
tags: ["gravel", "aggregates", "white-marble"],
|
||
},
|
||
{
|
||
slug: "black-star-5-8",
|
||
name: "5/8\" Black Star",
|
||
category: "landscaping",
|
||
subcategory: "Sand & Gravel",
|
||
image: "/sandgravel/5-8-Black-Star-2.jpg",
|
||
description:
|
||
"5/8\" crushed black star granite for driveways, drainage, and bold dark ground cover.",
|
||
purchaseUnit: "Quoted by shovel or yard",
|
||
featured: false,
|
||
tags: ["gravel", "aggregates", "black-star"],
|
||
},
|
||
{
|
||
slug: "black-star",
|
||
name: "Black Star",
|
||
category: "landscaping",
|
||
subcategory: "Sand & Gravel",
|
||
image: "/sandgravel/Black-Star-2.jpg",
|
||
description:
|
||
"Standard black star crushed granite for utility fill, base layers, and dark decorative coverage.",
|
||
purchaseUnit: "Quoted by shovel or yard",
|
||
featured: false,
|
||
tags: ["gravel", "aggregates", "black-star"],
|
||
},
|
||
{
|
||
slug: "river-gravel",
|
||
name: "River Gravel",
|
||
category: "landscaping",
|
||
subcategory: "Sand & Gravel",
|
||
image: "/sandgravel/thumbnail_20231003_112820.jpg",
|
||
description:
|
||
"Smooth-worn mixed river gravel for natural-looking drainage, creek beds, and landscape accents.",
|
||
purchaseUnit: "Quoted by shovel or yard",
|
||
featured: false,
|
||
tags: ["gravel", "aggregates", "river-gravel"],
|
||
},
|
||
// ── Flagstone ─────────────────────────────────────────────────────────────
|
||
{
|
||
slug: "oklahoma-1in",
|
||
name: "1\" Oklahoma",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/Oklahoma-scaled.jpg",
|
||
description:
|
||
"Classic 1\" Oklahoma flagstone in natural gray-green tones. A go-to choice for patios, paths, and stepping stone installations.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: true,
|
||
tags: ["flagstone", "oklahoma"],
|
||
},
|
||
{
|
||
slug: "oklahoma-silver-mist-1in",
|
||
name: "1\" Oklahoma Silver Mist",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/thumbnail_20210413_072014.jpg",
|
||
description:
|
||
"1\" Oklahoma Silver Mist flagstone with a cool silver-gray tone. Consistent flat surface ideal for clean, contemporary hardscape.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: false,
|
||
tags: ["flagstone", "oklahoma", "silver"],
|
||
},
|
||
{
|
||
slug: "arkansas-chestnut-1in",
|
||
name: "1\" Arkansas Chestnut",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/20200406_152513-scaled.jpg",
|
||
description:
|
||
"1\" Arkansas Chestnut flagstone with warm brown and tan tones. Natural color variation adds character to patios and walkways.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: false,
|
||
tags: ["flagstone", "arkansas", "chestnut"],
|
||
},
|
||
{
|
||
slug: "arkansas-blue-half-in",
|
||
name: "1/2\" Arkansas Blue",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/ark-blue-1-scaled.jpg",
|
||
description:
|
||
"Thin 1/2\" Arkansas Blue flagstone for layered installs and projects where a lighter, slate-blue profile is preferred.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: false,
|
||
tags: ["flagstone", "arkansas", "blue"],
|
||
},
|
||
{
|
||
slug: "arkansas-blue-1in",
|
||
name: "1\" Arkansas Blue",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/20200604_103356-scaled.jpg",
|
||
description:
|
||
"1\" Arkansas Blue flagstone with a deep blue-gray color. Durable and versatile for patios, pool decks, and garden paths.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: true,
|
||
tags: ["flagstone", "arkansas", "blue"],
|
||
},
|
||
{
|
||
slug: "arkansas-blue-2in",
|
||
name: "2\" Arkansas Blue",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/20200318_083229-1-scaled.jpg",
|
||
description:
|
||
"Heavier 2\" Arkansas Blue flagstone for bold, substantial hardscape presence and high-traffic areas.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: false,
|
||
tags: ["flagstone", "arkansas", "blue"],
|
||
},
|
||
{
|
||
slug: "arkansas-brown-half-in",
|
||
name: "1/2\" Arkansas Brown",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/Ark-Brown-12-scaled.jpg",
|
||
description:
|
||
"Thin 1/2\" Arkansas Brown flagstone with rich orange and rust tones. Great for layered installs and warm-palette designs.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: false,
|
||
tags: ["flagstone", "arkansas", "brown"],
|
||
},
|
||
{
|
||
slug: "arkansas-brown-1in",
|
||
name: "1\" Arkansas Brown",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/Ark-Brown-1-scaled.jpg",
|
||
description:
|
||
"1\" Arkansas Brown flagstone in warm orange and rust tones. A popular choice for patios with a natural earthy look.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: false,
|
||
tags: ["flagstone", "arkansas", "brown"],
|
||
},
|
||
{
|
||
slug: "arkansas-brown-2in",
|
||
name: "2\" Arkansas Brown",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/20200406_152327-scaled.jpg",
|
||
description:
|
||
"Substantial 2\" Arkansas Brown flagstone with large warm tan and golden slabs for bold hardscape installations.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: false,
|
||
tags: ["flagstone", "arkansas", "brown"],
|
||
},
|
||
{
|
||
slug: "mexico-white-1-5in",
|
||
name: "1-1/2\" Mexico White",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/thumbnail_20230413_105458.jpg",
|
||
description:
|
||
"1-1/2\" Mexico White flagstone with a clean, bright white surface. Ideal for high-contrast hardscape and modern outdoor designs.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: false,
|
||
tags: ["flagstone", "mexico", "white"],
|
||
},
|
||
{
|
||
slug: "mexico-creama-1-5in",
|
||
name: "1-1/2\" Mexico Creama",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/Mexico-Cream-Flagstone.jpg",
|
||
description:
|
||
"1-1/2\" Mexico Creama flagstone in warm cream and beige tones. A classic neutral for patios and natural stone pathways.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: false,
|
||
tags: ["flagstone", "mexico", "cream"],
|
||
},
|
||
{
|
||
slug: "mexico-rosa-1-5in",
|
||
name: "1-1/2\" Mexico Rosa Flagstone",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/thumbnail_20250418_081648.jpg",
|
||
description:
|
||
"1-1/2\" Mexico Rosa flagstone with rich salmon and rose tones. Thicker profile for heavier patio and hardscape work.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: false,
|
||
tags: ["flagstone", "mexico", "rosa"],
|
||
},
|
||
{
|
||
slug: "mexico-gray-1-5in",
|
||
name: "1-1/2\" Mexico Gray Flagstone",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/thumbnail_20240508_150416.jpg",
|
||
description:
|
||
"1-1/2\" Mexico Gray flagstone with a light gray and white mottled surface. Clean, understated tone for contemporary hardscape.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: false,
|
||
tags: ["flagstone", "mexico", "gray"],
|
||
},
|
||
{
|
||
slug: "mexico-cafe-1-5in",
|
||
name: "1-1/2\" Mexico Cafe Flagstone",
|
||
category: "landscaping",
|
||
subcategory: "Flagstone",
|
||
image: "/flagstone/thumbnail_20240508_150322-1.jpg",
|
||
description:
|
||
"1-1/2\" Mexico Cafe flagstone in warm buff and cream tones. A versatile neutral that complements most exterior palettes.",
|
||
purchaseUnit: "Quoted by pound or ton",
|
||
availabilityNote: "One-ton delivery minimum.",
|
||
featured: false,
|
||
tags: ["flagstone", "mexico", "cafe"],
|
||
},
|
||
// ── Boulderstone ──────────────────────────────────────────────────────────
|
||
{
|
||
slug: "cream-limestone-block",
|
||
name: "Cream Limestone Block",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/thumbnail_20200618_083606.jpg",
|
||
description:
|
||
"Cream-colored limestone blocks for retaining walls, garden borders, and structural landscape features.",
|
||
purchaseUnit: "Quoted by load",
|
||
featured: true,
|
||
tags: ["boulders", "limestone", "block"],
|
||
},
|
||
{
|
||
slug: "limestone-building-stone",
|
||
name: "Limestone Building Stone",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/thumbnail_20200618_083624.jpg",
|
||
description:
|
||
"Rough-cut tan limestone building stone for walls, steps, and natural-look structural applications.",
|
||
purchaseUnit: "Quoted by load",
|
||
featured: false,
|
||
tags: ["boulders", "limestone", "building-stone"],
|
||
},
|
||
{
|
||
slug: "white-limestone-block",
|
||
name: "White Limestone Block",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/20200604_103114-scaled.jpg",
|
||
description:
|
||
"Light white-gray limestone blocks with textured faces for retaining walls and large-scale landscape structure.",
|
||
purchaseUnit: "Quoted by load",
|
||
featured: false,
|
||
tags: ["boulders", "limestone", "block", "white"],
|
||
},
|
||
{
|
||
slug: "tan-limestone-block",
|
||
name: "Tan Limestone Block",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/20200604_103105-scaled.jpg",
|
||
description:
|
||
"Large-format tan limestone blocks for heavy retaining walls, raised beds, and structural garden features.",
|
||
purchaseUnit: "Quoted by load",
|
||
featured: false,
|
||
tags: ["boulders", "limestone", "block"],
|
||
},
|
||
{
|
||
slug: "sandstone-building-block",
|
||
name: "Sandstone Building Block",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/20200604_103013-scaled.jpg",
|
||
description:
|
||
"Warm tan sandstone blocks with smooth tops and rough sides for walls, steps, and accent features.",
|
||
purchaseUnit: "Quoted by load",
|
||
featured: false,
|
||
tags: ["boulders", "sandstone", "block"],
|
||
},
|
||
{
|
||
slug: "sandstone-block-warm-tan",
|
||
name: "Sandstone Block — Warm Tan",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/20200604_103028_HDR-scaled.jpg",
|
||
description:
|
||
"Warm golden-tan sandstone blocks for retaining walls and raised border features with natural earthy color.",
|
||
purchaseUnit: "Quoted by load",
|
||
featured: false,
|
||
tags: ["boulders", "sandstone", "block"],
|
||
},
|
||
{
|
||
slug: "cream-limestone-boulder",
|
||
name: "Cream Limestone Boulder",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/20200406_152023-scaled.jpg",
|
||
description:
|
||
"Large individual cream limestone boulders for focal points, natural retaining features, and landscape accents.",
|
||
purchaseUnit: "Quoted by load",
|
||
featured: false,
|
||
tags: ["boulders", "limestone"],
|
||
},
|
||
{
|
||
slug: "limestone-slab-boulder",
|
||
name: "Limestone Slab Boulder",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/20200406_152000-scaled.jpg",
|
||
description:
|
||
"Extra-large limestone slab boulders for dramatic landscape statements, benches, and feature walls.",
|
||
purchaseUnit: "Quoted by load",
|
||
featured: false,
|
||
tags: ["boulders", "limestone"],
|
||
},
|
||
{
|
||
slug: "hill-country-boulders",
|
||
name: "Hill Country Boulders",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/20200604_103334-scaled.jpg",
|
||
description:
|
||
"Natural orange and rust-toned Hill Country boulders for rugged landscape features and retaining accents.",
|
||
purchaseUnit: "Quoted by load",
|
||
featured: false,
|
||
tags: ["boulders", "hill-country"],
|
||
},
|
||
{
|
||
slug: "mixed-boulders",
|
||
name: "Mixed Boulders",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/20200604_103544-scaled.jpg",
|
||
description:
|
||
"Mixed large boulders in a variety of colors and stone types. Call to discuss what's available in the yard.",
|
||
purchaseUnit: "Quoted by load",
|
||
featured: false,
|
||
tags: ["boulders", "mixed"],
|
||
},
|
||
{
|
||
slug: "river-rock-4-6",
|
||
name: "River Rock 4-6\"",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/4-6-scaled.jpg",
|
||
description:
|
||
"Large 4–6\" rounded river rock boulders in wire cages, ideal for drainage features, creek beds, and accent walls.",
|
||
purchaseUnit: "Quoted by cage or load",
|
||
featured: true,
|
||
tags: ["boulders", "river-rock"],
|
||
},
|
||
{
|
||
slug: "mixed-river-rock",
|
||
name: "Mixed River Rock",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/20200604_103254-scaled.jpg",
|
||
description:
|
||
"Large mixed river rock boulders in a range of shapes and colors for natural water features and landscape accents.",
|
||
purchaseUnit: "Quoted by cage or load",
|
||
featured: false,
|
||
tags: ["boulders", "river-rock"],
|
||
},
|
||
{
|
||
slug: "white-river-rock",
|
||
name: "White River Rock",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/thumbnail_20191024_100314.jpg",
|
||
description:
|
||
"Large smooth white-gray river rock boulders for striking decorative features and clean modern landscapes.",
|
||
purchaseUnit: "Quoted by cage or load",
|
||
featured: false,
|
||
tags: ["boulders", "river-rock", "white"],
|
||
},
|
||
{
|
||
slug: "sandstone-boulders",
|
||
name: "Sandstone Boulders",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/thumbnail_20210908_095544.jpg",
|
||
description:
|
||
"Large tan and orange sandstone boulders for statement landscape features, retaining walls, and natural focal points.",
|
||
purchaseUnit: "Quoted by load",
|
||
featured: false,
|
||
tags: ["boulders", "sandstone"],
|
||
},
|
||
{
|
||
slug: "fieldstone-boulders",
|
||
name: "Fieldstone Boulders",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/thumbnail_20210908_095716.jpg",
|
||
description:
|
||
"Mixed fieldstone boulders in gray, tan, and brown for natural-looking retaining features and landscape accents.",
|
||
purchaseUnit: "Quoted by load",
|
||
featured: false,
|
||
tags: ["boulders", "fieldstone"],
|
||
},
|
||
{
|
||
slug: "white-marble-boulders",
|
||
name: "White Marble Boulders",
|
||
category: "landscaping",
|
||
subcategory: "Boulderstone",
|
||
image: "/boulderstone/thumbnail_20230413_105417.jpg",
|
||
description:
|
||
"Pure white marble boulders for high-contrast decorative features, water gardens, and modern landscape statements.",
|
||
purchaseUnit: "Quoted by cage or load",
|
||
featured: false,
|
||
tags: ["boulders", "marble", "white"],
|
||
},
|
||
];
|
||
|
||
export const featuredMaterials = [
|
||
masonryMaterials[0],
|
||
masonryMaterials[1],
|
||
landscapingMaterials[0],
|
||
landscapingMaterials[4],
|
||
landscapingMaterials[8],
|
||
landscapingMaterials[11],
|
||
];
|
||
|
||
export const faqs = [
|
||
{
|
||
question: "Do you offer delivery?",
|
||
answer:
|
||
"Yes. Delivery is available and quoted at time of purchase. Flagstone has a minimum of one ton, and landscaping aggregates have a 3 yard minimum.",
|
||
},
|
||
{
|
||
question: "How can materials be purchased?",
|
||
answer:
|
||
"Ground cover can be purchased by the shovel, by the pound, by the yard or by bulk bag. Flagstone can be purchased by the pound or ton.",
|
||
},
|
||
{
|
||
question: "Who do you serve?",
|
||
answer:
|
||
"We are committed to providing building professionals and the general public with the tools, service and support they need for projects large or small, including landscape architects, designers, and contractors.",
|
||
},
|
||
];
|