|
|
|
|
@@ -1,54 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Libre_Baskerville } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
|
|
|
|
|
const libreBaskerville = Libre_Baskerville({
|
|
|
|
|
variable: "--font-libre-baskerville", subsets: ["latin"],
|
|
|
|
|
weight: ["400", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Payment Processing Solutions | International Processing Solutions", description: "Fast, reliable, and transparent payment processing that beats Square, Clover, and Stripe. Get started free with IPS today.", keywords: "payment processing, payment gateway, merchant services, online payments, payment solutions", metadataBase: new URL("https://www.ips.example.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://www.ips.example.com"
|
|
|
|
|
},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Payment Processing Made Simple | International Processing Solutions", description: "Faster settlements, transparent pricing, and responsive support. Join 5,000+ businesses using IPS.", url: "https://www.ips.example.com", siteName: "International Processing Solutions", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_52683-29590.jpg", alt: "payment processing dashboard financial"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Payment Processing Made Simple", description: "Experience faster, smarter payment processing with IPS.", images: ["http://img.b2bpic.net/free-vector/dashboard-user-panel-template_52683-29590.jpg"]
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
title: "International Processing Solutions - Payment Processing Made Simple", description: "Faster, smarter payment solutions that beat Square, Clover, and Stripe on speed, reliability, and customer support."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|