Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 09:10:17 +00:00
2 changed files with 8 additions and 43 deletions

View File

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

View File

@@ -61,7 +61,7 @@ export default function LandingPage() {
]}
avatarText="Trusted by 5,000+ businesses worldwide"
buttons={[
{ text: "Start Free Trial", href: "https://app.ips.example.com/trial" },
{ text: "Start Processing Today", href: "https://app.ips.example.com/trial" },
{ text: "Learn More", href: "#features" }
]}
buttonAnimation="slide-up"