Merge version_2 into main #3

Merged
bender merged 2 commits from version_2 into main 2026-03-26 00:48:53 +00:00
2 changed files with 14 additions and 14 deletions

View File

@@ -24,13 +24,13 @@ export default function ContactPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", href: "/" },
{ name: "Services", href: "/#features" },
{ name: "Gallery", href: "/#products" },
{ name: "About Us", href: "/#about" },
{ name: "Testimonials", href: "/#testimonials" },
{ name: "FAQ", href: "/#faq" },
{ name: "Contact Us", href: "/contact-us" }
{ name: "Home", id: "/" },
{ name: "Services", id: "/#features" },
{ name: "Gallery", id: "/#products" },
{ name: "About Us", id: "/#about" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" },
{ name: "Contact Us", id: "/contact-us" }
]}
button={{
text: "Book Your Install", href: "/contact-us"}}

View File

@@ -31,19 +31,19 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{
name: "Home", href: "/"},
name: "Home", id: "/"},
{
name: "Services", href: "/#features"},
name: "Services", id: "/#features"},
{
name: "Gallery", href: "/#products"},
name: "Gallery", id: "/#products"},
{
name: "About Us", href: "/#about"},
name: "About Us", id: "/#about"},
{
name: "Testimonials", href: "/#testimonials"},
name: "Testimonials", id: "/#testimonials"},
{
name: "FAQ", href: "/#faq"},
name: "FAQ", id: "/#faq"},
{
name: "Contact Us", href: "/contact-us"},
name: "Contact Us", id: "/contact-us"},
]}
button={{
text: "Book Your Install", href: "/contact-us"}}