2 Commits

Author SHA1 Message Date
kudinDmitriyUp
3c06ac5fcc Bob AI: Add address to footer and contact section 2026-06-24 22:30:51 +00:00
60de31312b Merge version_2_1782339805424 into main
Merge version_2_1782339805424 into main
2026-06-24 22:25:01 +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>
);