Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1bce0c5844 | |||
| 7395974be8 | |||
| 43caf9b712 | |||
| 09157a36a5 | |||
| 7a602a8a5b |
@@ -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>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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"},
|
||||
|
||||
Reference in New Issue
Block a user