Merge version_2 into main #4
@@ -1,48 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Roboto } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import "@/styles/globals.css";
|
||||
|
||||
const roboto = Roboto({
|
||||
variable: "--font-roboto", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "500", "700", "900"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Coastal Plumbing of Brickell Inc | Miami Plumber", description: "Fast, reliable plumbing in Brickell & Miami. Leak repairs, drain cleaning, water heaters, and 24/7 emergency service. Licensed & insured. Call (786) 499-0799.", keywords: "plumber miami, brickell plumbing, emergency plumbing, drain cleaning, leak repair, water heater", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Coastal Plumbing of Brickell Inc | Miami Plumber", description: "Professional plumbing services in Brickell, Miami. 24/7 emergency response. Call (786) 499-0799.", siteName: "Coastal Plumbing of Brickell Inc", type: "website"},
|
||||
};
|
||||
title: "Coastal Plumbing | Fast, Reliable Plumbing in Brickell & Miami", description: "Professional plumbing services in Brickell, Miami Beach, and Greater Miami. Same-day availability, licensed & insured. Emergency plumbing 24/7."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${roboto.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1410,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -58,7 +58,7 @@ export default function LandingPage() {
|
||||
rating={5}
|
||||
ratingText="Trusted by Miami residents"
|
||||
buttons={[
|
||||
{ text: "Call Now", href: "contact" },
|
||||
{ text: "Call Now - Same Day Available", href: "contact" },
|
||||
{ text: "Request a Quote", href: "contact" }
|
||||
]}
|
||||
tagAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user