Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 19:18:03 +00:00
2 changed files with 13 additions and 44 deletions

View File

@@ -1,58 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito_Sans } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const nunitoSans = Nunito_Sans({
variable: "--font-nunito-sans", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "FinTracker - Automatic Spending Tracker & Financial Insights", description: "Upload bank statements, get instant spending insights, and track savings automatically. No manual entry required. Join thousands tracking smarter.", keywords: "financial dashboard, spending tracker, bank statement analysis, budgeting app, expense tracking, savings tracker, financial insights", metadataBase: new URL("https://fintracker.app"),
alternates: {
canonical: "https://fintracker.app"},
openGraph: {
title: "FinTracker - See Where Your Money Really Goes", description: "Automatic spending analysis and savings tracking. Upload bank statements, get insights instantly.", url: "https://fintracker.app", siteName: "FinTracker", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXT9EDXImOlgpR13XX5dwECwGc/a-modern-financial-dashboard-interface-d-1772737937671-771dcd50.png", alt: "FinTracker Financial Dashboard"},
],
},
twitter: {
card: "summary_large_image", title: "FinTracker - Automatic Spending Insights", description: "Take control of your finances. Upload statements, see spending patterns, track savings.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AXT9EDXImOlgpR13XX5dwECwGc/a-modern-financial-dashboard-interface-d-1772737937671-771dcd50.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "FinTracker", description: "Track your spending instantly with AI-powered categorization"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -167,7 +167,7 @@ export default function FinTrackerPage() {
plans={[
{
id: "starter", badge: "Starter", badgeIcon: Zap,
price: "Free", subtitle: "Perfect for getting started", buttons: [
price: "Free", subtitle: "Perfect for getting started No credit card required", buttons: [
{ text: "Get Started", href: "contact" },
{ text: "Learn More", href: "#" },
],