diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 3f23625..4efbba2 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -58,7 +58,7 @@ export default function BlogPage() {

Explore our latest insights from the team.

- {(posts as BlogPost[]).map((post) => ( + {(posts as unknown as BlogPost[]).map((post) => ( {post.coverImage && (
diff --git a/src/app/page.tsx b/src/app/page.tsx index 5b00c52..af5c57f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,8 +28,8 @@ export default function LandingPage() { @@ -39,7 +39,7 @@ export default function LandingPage() { title="Trusted Roof Repair for Your Home" description="Carter Brothers provides expert roofing services in Covington, KY. From minor repairs to full replacements, we ensure quality and durability." background={{variant: 'plain'}} - buttons={[{text:"Get a Free Quote",href:"contact"},{text:"Our Services",href:"services"}]} + buttons={[{text:"Get a Free Quote",href:"/#contact"},{text:"Our Services",href:"/#services"}]} mediaItems={[ {imageSrc:"https://img.b2bpic.net/free-photo/man-sitting-roof_23-2148748778.jpg", imageAlt:"Workers on a residential roof installing new shingles"}, {imageSrc:"https://img.b2bpic.net/free-photo/man-sitting-roof_23-2148748778.jpg", imageAlt:"Close-up of new roof shingles"}, @@ -52,7 +52,7 @@ export default function LandingPage() {
@@ -138,9 +138,9 @@ export default function LandingPage() { diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 6bb4e9f..2fd04bb 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -107,9 +107,9 @@ function ProductPageContent({ params }: ProductPageProps) { @@ -160,9 +160,9 @@ function ProductPageContent({ params }: ProductPageProps) { @@ -237,9 +237,9 @@ function ProductPageContent({ params }: ProductPageProps) { diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index d9f467b..14c8a4c 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -74,9 +74,9 @@ function ShopPageContent() { @@ -141,9 +141,9 @@ function ShopPageContent() {