9 Commits

Author SHA1 Message Date
6dffab994d Merge version_3 into main
Merge version_3 into main
2026-03-07 00:39:02 +00:00
4789f3c81d Update src/app/page.tsx 2026-03-07 00:38:58 +00:00
c1acf02365 Update src/app/layout.tsx 2026-03-07 00:38:57 +00:00
2077503974 Merge version_2 into main
Merge version_2 into main
2026-03-07 00:37:06 +00:00
1bce0c5844 Update src/app/page.tsx 2026-03-07 00:37:02 +00:00
7395974be8 Update src/app/layout.tsx 2026-03-07 00:37:01 +00:00
43caf9b712 Merge version_1 into main
Merge version_1 into main
2026-03-07 00:34:07 +00:00
09157a36a5 Merge version_1 into main
Merge version_1 into main
2026-03-07 00:33:17 +00:00
7a602a8a5b Merge version_1 into main
Merge version_1 into main
2026-03-07 00:32:00 +00:00
2 changed files with 17 additions and 41 deletions

View File

@@ -1,51 +1,20 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Appliance Repair Monroe County, Florida Keys | Same-Day Service", description: "Professional appliance repair across Key Largo, Islamorada, Marathon & Key West. Same-day service, honest pricing, 5-star rated. Call (305) 849-3979.", keywords: "appliance repair Florida Keys, refrigerator repair Key Largo, washer repair Monroe County, dishwasher repair Islamorada, appliance service Key West", metadataBase: new URL("https://a1stchoiceappliance.com"),
alternates: {
canonical: "https://a1stchoiceappliance.com"},
openGraph: {
title: "Fast Appliance Repair - Florida Keys & Monroe County", description: "Same-day professional appliance repair service. Local trusted technician. Refrigerators, washers, dishwashers, ovens & more.", url: "https://a1stchoiceappliance.com", siteName: "A 1st Choice Appliance Service", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/front-view-happy-repairman-holding-washer-white-space_140725-106494.jpg", alt: "professional appliance repair technician portrait"},
],
},
twitter: {
card: "summary_large_image", title: "Fast Appliance Repair - Florida Keys", description: "Professional appliance repair across Monroe County. Same-day service available.", images: ["http://img.b2bpic.net/free-photo/front-view-happy-repairman-holding-washer-white-space_140725-106494.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "A 1st Choice Appliance Service", description: "Fast & reliable appliance repair in the Florida Keys. Same-day service available across Monroe County."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -58,6 +58,14 @@ export default function LandingPage() {
{ text: "Schedule Service", href: "#contact-form" },
]}
background={{ variant: "plain" }}
avatars={[
{ src: "http://img.b2bpic.net/free-photo/close-up-young-businesswoman_23-2149153828.jpg", alt: "Customer 1" },
{ src: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1640.jpg", alt: "Customer 2" },
{ src: "http://img.b2bpic.net/free-photo/beautiful-brunette-female-with-glad-expression-outdoor-terrace-cafe_273609-2822.jpg", alt: "Customer 3" },
{ src: "http://img.b2bpic.net/free-photo/brazilian-young-man-standing-brick-wall-smiling-cheerful-offering-hands-giving-assistance-acceptance_839833-1655.jpg", alt: "Customer 4" },
{ src: "http://img.b2bpic.net/free-photo/young-woman-isolated-dark-wall-showing-thumbs-up-with-two-hands_114579-58464.jpg", alt: "Customer 5" },
]}
avatarText="Trusted by 500+ Florida Keys homeowners"
leftCarouselItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/front-view-happy-repairman-holding-washer-white-space_140725-106494.jpg?_wi=1", imageAlt: "Professional appliance repair technician"},
@@ -181,7 +189,7 @@ export default function LandingPage() {
<div id="contact-cta" data-section="contact-cta">
<ContactText
text="Need Appliance Repair Today? Call A 1st Choice for honest, fast service across Monroe County. (305) 849-3979"
text="Your Appliance Broken? Same-Day Repair Available Now — (305) 849-3979"
animationType="reveal-blur"
background={{ variant: "plain" }}
useInvertedBackground={false}
@@ -211,4 +219,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}