import Image from "next/image"; import Link from "next/link"; import { Breadcrumbs } from "@/components/breadcrumbs"; import { JsonLd } from "@/components/json-ld"; import { aboutHighlights, buildStory, siteConfig } from "@/data/site-content"; import { breadcrumbSchema, buildPageMetadata } from "@/lib/seo"; import { MotionSection } from "@/components/motion-section"; import { FadeUp, FadeIn, SlideIn } from "@/components/page-hero-motion"; export const metadata = buildPageMetadata({ title: "About Southern Masonry Supply", description: "Learn how Southern Masonry Supply has served Corpus Christi with masonry and landscaping materials since 1990.", path: "/about", }); export default function AboutPage() { const breadcrumbs = [ { name: "Home", path: "/" }, { name: "About", path: "/about" }, ]; return ( <>
Family owned and operated

Serving Corpus Christi projects with material knowledge that lasts.

Southern Masonry Supply has spent more than 34 years helping contractors, homeowners, architects, and designers source the right masonry and landscaping materials for projects large and small.

Since 1990 in South Texas Family-owned: Sid Smith Jr. Project-grounded recommendations
Southern Masonry Supply heritage tools Built for long-horizon projects
{buildStory.map((section, idx) => (
{section.eyebrow}

{section.title}

{section.copy}

))}
Flagstone pathway and landscaping project
The Southern Standard

Why builders trust our yard

{aboutHighlights.map((item, idx) => (

{item.title}

{item.description}

))}
Delivery truck for masonry and landscaping orders
Service that stays practical

Our mission is simple: make good material easier to source.

Founded in 1990 and led by Sid Smith Jr., Southern Masonry Supply stays focused on responsive service, reliable stock levels, and materials worth putting into long-term work. Sid's hands-on expertise in both masonry and landscaping ensures the yard remains the southern standard for quality and practical guidance.

Whether you are ordering flagstone by the ton, pebbles by the bag, or masonry cement for a new project phase, our team keeps the conversation grounded in application, quantity, and timing.

View masonry supplies View landscaping supplies
Visit or call

{siteConfig.address.street}

Stop by the yard during business hours or call{" "} {siteConfig.phoneDisplay} for material availability and delivery planning.

Contact us
); }