diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1307e5c..21c7de6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1442 +1,20 @@ import type { Metadata } from "next"; -import { Montserrat, Inter } from "next/font/google"; -import { Halant } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "PayWhatsApp - Automated Payment Thank-Yous for Indian Small Shops", - description: "Automate WhatsApp thank-you messages after UPI payments. Perfect for barber shops, cafes, salons, and retail stores. Integrate with Razorpay easily. Free trial available.", - keywords: "payment automation, WhatsApp business, UPI payments, Razorpay, small business, Indian shops, payment gateway, customer engagement", - metadataBase: new URL("https://paywhatsapp.com"), - alternates: { - canonical: "https://paywhatsapp.com", - }, - openGraph: { - title: "PayWhatsApp - Automate Payment Thank-Yous With WhatsApp", - description: "Help your customers feel valued with automatic WhatsApp messages after successful UPI payments. Perfect for small Indian businesses.", - url: "https://paywhatsapp.com", - siteName: "PayWhatsApp", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkPebCR6RE3JHXw1pk25xuQoyu/a-modern-saas-dashboard-interface-showin-1773134907913-db021c34.png", - alt: "PayWhatsApp Dashboard Preview", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "PayWhatsApp - Automated Payment Thank-Yous", - description: "Send automatic WhatsApp messages after UPI payments. Built for Indian small businesses.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkPebCR6RE3JHXw1pk25xuQoyu/a-modern-saas-dashboard-interface-showin-1773134907913-db021c34.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "PayWhatsApp - Automate Payment Thank-Yous", description: "PayWhatsApp helps small shops in India automatically send thank-you messages via WhatsApp after successful payments."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -