From a3f506e47dd1ab50568c1da6a2da0071fde77e69 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:10:11 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 +++++++--------------------------------------- 1 file changed, 7 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 590fe21..9e983fd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}