Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9f2b45c0b0 | |||
| c989931b95 | |||
| be0e427db5 | |||
| 7ba376694f | |||
| 8056dd8ffa |
@@ -1,48 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Roboto } from "next/font/google";
|
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "@/styles/globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const roboto = Roboto({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
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."};
|
||||||
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"},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${roboto.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1410,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ export default function LandingPage() {
|
|||||||
rating={5}
|
rating={5}
|
||||||
ratingText="Trusted by Miami residents"
|
ratingText="Trusted by Miami residents"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call Now", href: "contact" },
|
{ text: "Call Now - Same Day Available", href: "contact" },
|
||||||
{ text: "Request a Quote", href: "contact" }
|
{ text: "Request a Quote", href: "contact" }
|
||||||
]}
|
]}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
|
|||||||
Reference in New Issue
Block a user