import Image from "next/image"; import Link from "next/link"; import { siteConfig, processSteps, faqs, featuredMaterials, googleReviews, homeStats } from "@/data/site-content"; import { JsonLd } from "@/components/json-ld"; import { ProcessTimeline } from "@/components/process-timeline"; import { Breadcrumbs } from "@/components/breadcrumbs"; import { buildPageMetadata, breadcrumbSchema, faqPageSchema } from "@/lib/seo"; import { TestimonialsCarousel } from "@/components/testimonials-carousel"; import { HomeCTASection } from "@/components/home-cta-section"; import { MotionSection } from "@/components/motion-section"; import { HeroCinema } from "@/components/hero-cinema"; import { CountUpStat } from "@/components/count-up-stat"; export const metadata = buildPageMetadata({ title: "South Texas's Most Trusted Masonry Supply", description: "Providing premium brick, stone, and landscaping materials to Corpus Christi's contractors and homeowners since 1990.", path: "/", }); export default function Home() { return (
{/* Hero Section */}
SINCE 1990

South Texas's Most Trusted Masonry Supply

Providing premium brick, stone, and landscaping materials to Corpus Christi's contractors and homeowners with dependable on-site delivery.

{[...Array(5)].map((_, i) => ( ))}
4.9 Stars (14 Google Reviews)
GET A FREE QUOTE VIEW INVENTORY
{/* Quick Service Band */}

Phone

{siteConfig.phoneDisplay}

Address

{siteConfig.address.street}

Hours

Mon - Fri 8 AM - 5 PM
{/* Stats Band */}
{homeStats.map((stat, i) => ( ))}
{/* Product Categories */}
OUR PRODUCTS

Premium Materials for Any Project

From foundation to finish, we carry the materials you need for professional masonry and landscaping results.

Masonry Supplies

Masonry Supplies

Brick, concrete blocks, mortar, and lintels for structural and aesthetic projects.

LEARN MORE →
Natural Stone

Natural Stone

Flagstone, limestone, and decorative rock to elevate your landscape and architecture.

LEARN MORE →
Tools & Materials

Tools & Materials

High-quality masonry tools, expansion joints, and sealers to get the job done right.

LEARN MORE →
{/* Featured Products */}
IN STOCK NOW

Featured Masonry Products

VIEW FULL INVENTORY
{featuredMaterials.slice(0, 4).map((product, i) => (
{product.name}

{product.name}

Available for delivery

))}
{/* Why Choose Us */}
THE SMS DIFFERENCE

Professional Supply, Personal Service

We aren't just a yard; we're your project partner. With over 34 years of experience serving South Texas, we know our materials and we know our customers.

  • 34+ YEARS Experience in the Corpus Christi area.
  • RELIABLE DELIVERY Dependable site drops when you need them.
  • OPEN TO PUBLIC Serving both contractors and homeowners.
  • LOCAL EXPERTISE Knowledgeable staff for all project types.
Southern Masonry Supply Delivery Truck
RELIABLE ON-SITE DELIVERY
{/* Process Section */}
OUR PROCESS

How to Get Your Materials

{/* Testimonials */}
WHAT CUSTOMERS SAY

Trusted by Corpus Christi

{/* FAQ Section */}
COMMON QUESTIONS

Frequently Asked Questions

{faqs.map((faq) => (
{faq.question}

{faq.answer}

))}
{/* Call to Action with inline form */}
); }