import Image from "next/image"; import Link from "next/link"; import { redirect } from "next/navigation"; import { Breadcrumbs } from "@/components/breadcrumbs"; import { JsonLd } from "@/components/json-ld"; import { breadcrumbSchema, buildPageMetadata, itemListSchema } from "@/lib/seo"; export const metadata = buildPageMetadata({ title: "Masonry & Landscaping Supplies in Corpus Christi, TX", description: "Browse masonry supplies and landscaping supplies from Southern Masonry Supply in Corpus Christi, TX.", path: "/products", image: "/images/hero_main.png", }); type ProductsPageProps = { searchParams: Promise>; }; function firstValue(value: string | string[] | undefined) { return Array.isArray(value) ? value[0] : value; } export default async function ProductsPage({ searchParams, }: ProductsPageProps) { const params = await searchParams; const category = firstValue(params.category)?.toLowerCase(); if (category === "masonry" || category === "tools") { redirect("/masonry-supplies#catalog"); } if ( category === "stone" || category === "natural-stone" || category === "landscaping" ) { redirect("/landscaping-supplies#catalog"); } const breadcrumbs = [ { name: "Home", path: "/" }, { name: "Products", path: "/products" }, ]; return ( <>
Masonry & Landscaping Supplies

Masonry & Landscaping Supplies

Southern Masonry Supply offers masonry supplies and landscaping supplies in Corpus Christi, TX and surrounding cities. Browse the catalog that matches your project and get in touch for delivery information.

Masonry supplies and tools
Masonry supplies

Masonry tools and bagged cement.

Browse masonry tools and bagged cement from Southern Masonry Supply.

Masonry Tools Bagged Cement Get in Touch
Open masonry catalog
Natural stone and landscaping materials
Natural stone

Flagstone, gravel, pebbles, and boulders.

Browse Mexico Beach Pebbles, Sand & Gravel, Flagstone, and Boulders & Stone from Southern Masonry Supply.

Mexico Beach Pebbles Flagstone Sand & Gravel Boulders & Stone
Open landscaping catalog

Delivery is also available and quoted at time of purchase. For flagstone there is a minimum of one ton, and for landscaping aggregates there is a 3 yard minimum.

Contact us
); }