Merge version_2 into main #4
@@ -1,49 +1,23 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Libre_Baskerville } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const libreBaskerville = Libre_Baskerville({
|
||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
||||
weight: ["400", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins", subsets: ["latin"],
|
||||
weight: ["400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "FlowWorks | Premium Plumbing Service", description: "Expert plumbing solutions with 20+ years experience. 24/7 emergency service, licensed & insured. Schedule your appointment today.", keywords: "plumbing service, emergency plumbing, pipe repair, water heater installation, drain cleaning, licensed plumber", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "FlowWorks | Premium Plumbing Service", description: "Expert plumbing solutions engineered for perfection. Available 24/7.", siteName: "FlowWorks", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55834.jpg", alt: "FlowWorks Professional Plumbing Service"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "FlowWorks | Premium Plumbing Service", description: "Expert plumbing solutions available 24/7.", images: ["http://img.b2bpic.net/free-photo/man-installs-heating-system-house-checks-pipes-with-wrench_169016-55834.jpg"],
|
||||
},
|
||||
};
|
||||
title: "FlowWorks - Premium Plumbing Solutions", description: "Expert plumbing services engineered for perfection. 24/7 emergency response, licensed and insured professionals."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={poppins.variable}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1411,7 +1385,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@ export default function LandingPage() {
|
||||
description="Premium plumbing solutions engineered for perfection. We deliver expert craftsmanship with the precision Apple brings to technology."
|
||||
background={{ variant: "plain" }}
|
||||
buttons={[
|
||||
{ text: "Schedule Service", href: "#contact" },
|
||||
{ text: "Get 24/7 Emergency Service", href: "#contact" },
|
||||
{ text: "Learn More", href: "#services" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
@@ -204,7 +204,7 @@ export default function LandingPage() {
|
||||
"Yes, we specialize in complete plumbing installations for new constructions and renovations. We use premium materials and ensure everything meets or exceeds code requirements."},
|
||||
{
|
||||
id: "6", title: "How do I schedule a service?", content:
|
||||
"Simply contact us through our website, call our office, or use our online scheduling system. We'll confirm an appointment at your convenience with transparent pricing upfront."}
|
||||
"Simply contact us through our website, call our office, or use our online scheduling system. We'll confirm an appointment at your convenience with transparent pricing upfront."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bottom-border-made-with-pink-blue-razors-blue-backdrop_23-2147818101.jpg?_wi=1"
|
||||
imageAlt="Professional plumbing tools and equipment"
|
||||
|
||||
Reference in New Issue
Block a user