This commit is contained in:
2026-03-10 18:31:23 +01:00
parent 66225e4662
commit 4455605394
180 changed files with 9005 additions and 0 deletions

12
components/brand-logo.tsx Normal file
View File

@@ -0,0 +1,12 @@
export function BrandLogo({ className = "" }: { className?: string }) {
return (
<span className={`brand-logo-text ${className}`} aria-hidden="true">
<span className="blt-name">Southern Masonry Supply</span>
<span className="blt-tagline">
<span className="blt-line" />
<span className="blt-city">CORPUS CHRISTI, TX</span>
<span className="blt-line" />
</span>
</span>
);
}