From 16650f5222ab9fdd3a4127356bf348c778cac735 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 01:15:28 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 1869789..6233776 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -73,7 +73,7 @@ export default function ContactPage() { title="Get in Touch with Our Financial Experts" description="Have questions about FinanceFlow? Our support team is here to help you get started on your financial journey." tag="Contact Us" - imageSrc="http://img.b2bpic.net/free-photo/african-american-staff-gathers-examines-monthly-revenue-balance_482257-130896.jpg" + imageSrc="http://img.b2bpic.net/free-photo/african-american-staff-gathers-examines-monthly-revenue-balance_482257-130896.jpg?_wi=2" imageAlt="Financial team ready to assist" showBlur={true} showDimOverlay={true} -- 2.49.1 From 5ba8d46ab78b8b9ad4733c1020685d049e26a3c2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 01:15:28 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 46 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..d6853dc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_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 { Open_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 openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "FinanceFlow - Smart Financial Management Platform", + description: "Take control of your finances with FinanceFlow. Budget tracking, investment management, and personalized financial guidance - all in one platform.", + keywords: "personal finance, budgeting app, investment tracker, financial planning, wealth management, money management", + metadataBase: new URL("https://financeflow.app"), + alternates: { + canonical: "https://financeflow.app", + }, + openGraph: { + title: "FinanceFlow - Your Financial Future Starts Here", + description: "Smart tools and expert guidance to help you budget, invest, and grow your wealth with confidence.", + siteName: "FinanceFlow", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/african-american-staff-gathers-examines-monthly-revenue-balance_482257-130896.jpg", + alt: "FinanceFlow financial management platform", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "FinanceFlow - Smart Financial Management", + description: "Take control of your financial future with intelligent budgeting and investment tools.", + images: ["http://img.b2bpic.net/free-photo/african-american-staff-gathers-examines-monthly-revenue-balance_482257-130896.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}