9 Commits

Author SHA1 Message Date
9333ff590b Merge version_1 into main
Merge version_1 into main
2026-03-03 19:18:11 +00:00
6f95f79e03 Merge version_2 into main
Merge version_2 into main
2026-03-03 19:16:56 +00:00
f92b67992d Update src/app/page.tsx 2026-03-03 19:16:52 +00:00
02403075c9 Merge version_2 into main
Merge version_2 into main
2026-03-03 19:14:00 +00:00
3b7f4f296f Update src/app/page.tsx 2026-03-03 19:13:56 +00:00
29ee2e7a47 Update src/app/layout.tsx 2026-03-03 19:13:55 +00:00
564e7cc555 Merge version_1 into main
Merge version_1 into main
2026-03-03 19:00:53 +00:00
d7f3857e02 Merge version_1 into main
Merge version_1 into main
2026-03-03 18:59:42 +00:00
1f73c8cfe1 Merge version_1 into main
Merge version_1 into main
2026-03-03 18:56:35 +00:00

View File

@@ -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>
);
}