Merge version_1_1781132201946 into main
Merge version_1_1781132201946 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -8,32 +8,25 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
|
|||||||
export default function Layout() {
|
export default function Layout() {
|
||||||
const navItems = [
|
const navItems = [
|
||||||
{
|
{
|
||||||
"name": "Home",
|
"name": "Home", "href": "#home"
|
||||||
"href": "#home"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Services",
|
"name": "Services", "href": "#services"
|
||||||
"href": "#services"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Portfolio",
|
"name": "Portfolio", "href": "#portfolio"
|
||||||
"href": "#portfolio"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Testimonials",
|
"name": "Testimonials", "href": "#testimonials"
|
||||||
"href": "#testimonials"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Team",
|
"name": "Team", "href": "#team"
|
||||||
"href": "#team"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "FAQ",
|
"name": "FAQ", "href": "#faq"
|
||||||
"href": "#faq"
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Contact",
|
"name": "Contact", "href": "#contact"
|
||||||
"href": "#contact"
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -43,10 +36,9 @@ export default function Layout() {
|
|||||||
<SectionErrorBoundary name="navbar">
|
<SectionErrorBoundary name="navbar">
|
||||||
<NavbarFloatingLogo
|
<NavbarFloatingLogo
|
||||||
logo="The Gardner Landscaping"
|
logo="The Gardner Landscaping"
|
||||||
|
logoImageSrc="https://images.pexels.com/photos/37838325/pexels-photo-37838325.jpeg?auto=compress&cs=tinysrgb&h=650&w=940"
|
||||||
ctaButton={{
|
ctaButton={{
|
||||||
text: "Get a Quote",
|
text: "Get a Quote", href: "#contact"}}
|
||||||
href: "#contact",
|
|
||||||
}}
|
|
||||||
navItems={navItems} />
|
navItems={navItems} />
|
||||||
</SectionErrorBoundary>
|
</SectionErrorBoundary>
|
||||||
<main className="flex-grow">
|
<main className="flex-grow">
|
||||||
@@ -59,49 +51,31 @@ export default function Layout() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Services",
|
label: "Services", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Portfolio",
|
label: "Portfolio", href: "#portfolio"},
|
||||||
href: "#portfolio",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Testimonials",
|
label: "Testimonials", href: "#testimonials"},
|
||||||
href: "#testimonials",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Our Team",
|
label: "Our Team", href: "#team"},
|
||||||
href: "#team",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "FAQ",
|
label: "FAQ", href: "#faq"},
|
||||||
href: "#faq",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Get a Quote",
|
label: "Get a Quote", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Email Us",
|
label: "Email Us", href: "mailto:info@gardnerlandscaping.com"},
|
||||||
href: "mailto:info@gardnerlandscaping.com",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Call Us",
|
label: "Call Us", href: "tel:+1234567890"},
|
||||||
href: "tel:+1234567890",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user