Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f92b67992d | |||
| 3b7f4f296f | |||
| 29ee2e7a47 | |||
| 564e7cc555 | |||
| d7f3857e02 | |||
| 1f73c8cfe1 |
@@ -1,49 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Roboto } 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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "Shipshape - Mobile Boat Detailing", description: "Professional mobile boat detailing services in Dublin. We come to your marina."};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
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} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1411,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,13 +42,13 @@ export default function LandingPage() {
|
|||||||
<HeroBillboardGallery
|
<HeroBillboardGallery
|
||||||
title="Mobile Boat Detailing — We Come To You"
|
title="Mobile Boat Detailing — We Come To You"
|
||||||
description="Professional cleaning, restoration and protection for boats, yachts and RIBs at your marina or dock. Premium detailing delivered direct to your vessel."
|
description="Professional cleaning, restoration and protection for boats, yachts and RIBs at your marina or dock. Premium detailing delivered direct to your vessel."
|
||||||
background={{ variant: "noise" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
tag="Professional Marine Service"
|
tag="Professional Marine Service"
|
||||||
tagIcon={Anchor}
|
tagIcon={Anchor}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Call Now: 087 386 7666", href: "tel:0873867666" },
|
{ text: "Call Now: 087 386 7666", href: "tel:0873867666" },
|
||||||
{ text: "Text for Quote", href: "sms:0873867666?body=Hi%20Shipshape%2C%20I%27d%20like%20a%20quote%20for%20boat%20detailing%20services" }
|
{ text: "Book Now", href: "#contact" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
|
|||||||
Reference in New Issue
Block a user