diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e8f10d8..8e0e98c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}