Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-03-12 01:15:33 +00:00
3 changed files with 48 additions and 10 deletions

View File

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

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${openSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +77,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -78,7 +78,7 @@ export default function HomePage() {
title="Take Control of Your Financial Future"
description="Smart tools and expert guidance to help you budget, invest, and grow your wealth with confidence."
tag="Financial Freedom Starts Here"
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=1"
imageAlt="Financial dashboard and growth visualization"
showBlur={true}
showDimOverlay={true}