|
|
|
|
@@ -1,49 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Roboto } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
|
|
|
|
|
const roboto = Roboto({
|
|
|
|
|
variable: "--font-roboto", subsets: ["latin"],
|
|
|
|
|
weight: ["100", "300", "400", "500", "700", "900"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Mobile Boat Detailing Dublin | Shipshape Marine Services", description: "Professional mobile boat detailing delivered to your marina or dock. Yacht, RIB, and boat cleaning in Dublin. Call 087 386 7666 for instant quotes.", keywords: "boat detailing Dublin, mobile boat cleaning, yacht detailing, RIB restoration, antifouling service, marine detailing Ireland", metadataBase: new URL("https://shipshape.ie"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://shipshape.ie"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Shipshape Mobile Boat Detailing Dublin", description: "Professional boat detailing service coming to your marina. Expert yacht and RIB restoration.", url: "https://shipshape.ie", siteName: "Shipshape", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/soft-focus-water-drops-come-out-hose-sailor-captain-yacht-owner-washes-salty-residue-from-sail-mainsail-spinnaker-when-sailboat-is-docked-yard-marina_346278-360.jpg", alt: "Professional boat detailing service"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Shipshape Mobile Boat Detailing", description: "We come to your boat. Professional detailing in Dublin and coastal areas.", images: ["http://img.b2bpic.net/free-photo/soft-focus-water-drops-come-out-hose-sailor-captain-yacht-owner-washes-salty-residue-from-sail-mainsail-spinnaker-when-sailboat-is-docked-yard-marina_346278-360.jpg"]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "Shipshape - Mobile Boat Detailing", description: "Professional mobile boat detailing services in Dublin. We come to your marina."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${roboto.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1411,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|