Bob AI: Add address to footer and contact section

This commit is contained in:
kudinDmitriyUp
2026-06-24 22:30:51 +00:00
parent 60de31312b
commit 3c06ac5fcc
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>
);