Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-02-21 16:36:41 +00:00
4 changed files with 12 additions and 17 deletions

View File

@@ -28,11 +28,11 @@ export default function BlogPage() {
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Services", id: "#services" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "#contact" },
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#features" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Rick's Roofing"
/>
@@ -61,7 +61,6 @@ export default function BlogPage() {
{ icon: Twitter, href: "https://twitter.com/ricksroofing", ariaLabel: "Twitter" },
{ icon: Instagram, href: "https://instagram.com/ricksroofing", ariaLabel: "Instagram" }
]}
useInvertedBackground={false}
/>
</ReactLenis>
</ThemeProvider>

View File

@@ -27,7 +27,7 @@ export default function LandingPage() {
>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[{'name': 'Home', 'id': '#home'}, {'name': 'About', 'id': '#about'}, {'name': 'Services', 'id': '#services'}, {'name': 'Testimonials', 'id': '#testimonials'}, {'name': 'FAQ', 'id': '#faq'}, {'name': 'Contact', 'id': '#contact'}]}
navItems={[{'name': 'Home', 'id': '#hero'}, {'name': 'About', 'id': '#about'}, {'name': 'Services', 'id': '#features'}, {'name': 'Testimonials', 'id': '#testimonials'}, {'name': 'FAQ', 'id': '#faq'}, {'name': 'Contact', 'id': '#contact'}]}
brandName="Rick's Roofing"
/>
</div>
@@ -36,8 +36,8 @@ export default function LandingPage() {
<HeroSplit
title="Rick's Roofing and Repairs Inc."
description="Your trusted partner for all roofing solutions, delivering quality craftsmanship and lasting protection for your home or business."
background={{'variant': 'noiseDiagonalGradient'}}
buttons={[{'text': 'Get a Free Estimate', 'href': '#contact'}, {'text': 'Our Services', 'href': '#services'}]}
background={{'variant': 'plain'}}
buttons={[{'text': 'Get a Free Estimate', 'href': '#contact'}, {'text': 'Our Services', 'href': '#features'}]}
mediaAnimation="blur-reveal"
imageSrc="https://img.b2bpic.net/free-photo/man-sitting-roof_23-2148748778.jpg"
imageAlt="Professional roofer working on a residential roof"

View File

@@ -1,4 +1,4 @@
use client";
"use client";
import { Suspense, use, useCallback } from "react";
import { useRouter } from "next/navigation";
@@ -84,8 +84,7 @@ function ProductPageContent({ params }: ProductPageProps) {
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
],
brandName: "Rick's Roofing", button: { text: "Cart", onClick: () => setCartOpen(true) },
};
brandName: "Rick's Roofing"};
const footerProps = {
logoText: "Rick's Roofing", copyrightText: "© 2024 Rick's Roofing and Repairs Inc. All rights reserved.", socialLinks: [
@@ -93,7 +92,6 @@ function ProductPageContent({ params }: ProductPageProps) {
{ icon: Twitter, href: "https://twitter.com/ricksroofing", ariaLabel: "Twitter" },
{ icon: Instagram, href: "https://instagram.com/ricksroofing", ariaLabel: "Instagram" }
],
useInvertedBackground: false
};
if (isLoading) {

View File

@@ -1,4 +1,4 @@
use client";
"use client";
import { Suspense, useCallback } from "react";
import ReactLenis from "lenis/react";
@@ -51,8 +51,7 @@ function ShopPageContent() {
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" }
],
brandName: "Rick's Roofing", button: { text: "Cart", onClick: () => setCartOpen(true) },
};
brandName: "Rick's Roofing"};
const footerProps = {
logoText: "Rick's Roofing", copyrightText: "© 2024 Rick's Roofing and Repairs Inc. All rights reserved.", socialLinks: [
@@ -60,7 +59,6 @@ function ShopPageContent() {
{ icon: Twitter, href: "https://twitter.com/ricksroofing", ariaLabel: "Twitter" },
{ icon: Instagram, href: "https://instagram.com/ricksroofing", ariaLabel: "Instagram" }
],
useInvertedBackground: false
};
if (isLoading) {