diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 2f1576f..ab8dd81 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -107,7 +107,7 @@ export default function ContactPage() { required: true, }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/positive-business-colleagues-watching-presentation-pc-monitor-discussing-project-sitting-workplace-pointing-display-business-communication-concept_74855-11908.jpg" + imageSrc="http://img.b2bpic.net/free-photo/positive-business-colleagues-watching-presentation-pc-monitor-discussing-project-sitting-workplace-pointing-display-business-communication-concept_74855-11908.jpg?_wi=3" imageAlt="financial consultation meeting professional" mediaPosition="right" mediaAnimation="blur-reveal" diff --git a/src/app/for-chartered-accountants/page.tsx b/src/app/for-chartered-accountants/page.tsx index 6e84445..a05b306 100644 --- a/src/app/for-chartered-accountants/page.tsx +++ b/src/app/for-chartered-accountants/page.tsx @@ -98,7 +98,7 @@ export default function ForChartereredAccountantsPage() { icon: BarChart3, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/serious-business-colleagues-with-computer-documents_74855-1229.jpg" + imageSrc="http://img.b2bpic.net/free-photo/serious-business-colleagues-with-computer-documents_74855-1229.jpg?_wi=2" imageAlt="Professional CA practice growth" imagePosition="right" mediaAnimation="blur-reveal" @@ -120,7 +120,7 @@ export default function ForChartereredAccountantsPage() { title: "Access to Vetted Clients", subtitle: "Build your client base efficiently", description: "Receive pre-qualified client requests matched to your expertise, location, and service offerings. Focus on serving clients instead of chasing leads.", - imageSrc: "http://img.b2bpic.net/free-photo/data-center-engineer-greeting-colleague-examining-system-diagnostics-paperwork_482257-120629.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/data-center-engineer-greeting-colleague-examining-system-diagnostics-paperwork_482257-120629.jpg?_wi=2", imageAlt: "Client matching system", }, { @@ -129,7 +129,7 @@ export default function ForChartereredAccountantsPage() { title: "Integrated Practice Management", subtitle: "Streamline your operations", description: "Manage client communication, document uploads, compliance deadlines, and payment receipts all in one secure platform. Reduce administrative overhead and focus on advisory work.", - imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-working-desk_273609-12805.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-working-desk_273609-12805.jpg?_wi=2", imageAlt: "Practice management dashboard", }, { @@ -138,7 +138,7 @@ export default function ForChartereredAccountantsPage() { title: "Data-Driven Business Insights", subtitle: "Optimize your practice performance", description: "Analyze client satisfaction metrics, track service delivery efficiency, and identify growth opportunities. Use data to refine your service offerings and improve profitability.", - imageSrc: "http://img.b2bpic.net/free-photo/teleworker-home-office-gathering-information-from-internet-seminar_482257-119301.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/teleworker-home-office-gathering-information-from-internet-seminar_482257-119301.jpg?_wi=2", imageAlt: "Business analytics dashboard", }, ]} @@ -164,7 +164,7 @@ export default function ForChartereredAccountantsPage() { required: true, }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/positive-business-colleagues-watching-presentation-pc-monitor-discussing-project-sitting-workplace-pointing-display-business-communication-concept_74855-11908.jpg" + imageSrc="http://img.b2bpic.net/free-photo/positive-business-colleagues-watching-presentation-pc-monitor-discussing-project-sitting-workplace-pointing-display-business-communication-concept_74855-11908.jpg?_wi=2" imageAlt="Professional partnership discussion" mediaPosition="right" mediaAnimation="blur-reveal" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 590a34c..1c81dbd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Public_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Public_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "LedgerX - CA Marketplace | Expert Tax & Accounting Services", + description: "Match with vetted Chartered Accountants for tax filing, ITR, company registration & financial operations. Transparent pricing, expert guidance, trusted results.", + keywords: "chartered accountant marketplace, tax filing, ITR, company registration, accounting services India", + metadataBase: new URL("https://ledgerx.in"), + alternates: { + canonical: "https://ledgerx.in", + }, + openGraph: { + title: "LedgerX - Find Your Perfect CA, Instantly", + description: "Connect with verified Chartered Accountants for all your tax and compliance needs", + url: "https://ledgerx.in", + siteName: "LedgerX", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/handsome-latin-businessman-examining-sales-data-while-working-home_662251-890.jpg", + alt: "LedgerX CA Marketplace", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "LedgerX - CA Marketplace", + description: "Find your perfect Chartered Accountant instantly with transparent pricing", + images: ["http://img.b2bpic.net/free-photo/handsome-latin-businessman-examining-sales-data-while-working-home_662251-890.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}