Merge version_3_1782340210760 into main #2

Merged
bender merged 1 commits from version_3_1782340210760 into main 2026-06-24 22:31:31 +00:00
2 changed files with 18 additions and 5 deletions

View File

@@ -56,6 +56,19 @@ export default function Layout() {
<FooterSimple
brand="Pupusas Deli"
columns={[
{
title: "Location",
items: [
{
label: "2615 Little Rock Rd",
href: "#",
},
{
label: "Charlotte, NC 28214",
href: "#",
},
],
},
{
title: "Menu",
items: [

View File

@@ -10,17 +10,17 @@ export default function ContactSection(): React.JSX.Element {
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Visit Us"
text="Come visit our deli today and taste authentic Salvadoran pupusas made with love."
primaryButton={{
tag="Visit Us"
text="Come visit our deli today at 2615 Little Rock Rd, Charlotte, NC 28214 and taste authentic Salvadoran pupusas made with love."
primaryButton={{
text: "Get Directions",
href: "#",
}}
secondaryButton={{
secondaryButton={{
text: "Call Us",
href: "tel:5555555555",
}}
/>
/>
</SectionErrorBoundary>
</div>
);