7 Commits

Author SHA1 Message Date
d7dbeb7d40 Update src/app/page.tsx 2026-03-07 20:25:52 +00:00
c9252bb234 Update src/app/layout.tsx 2026-03-07 20:25:51 +00:00
07583431fb Merge version_1 into main
Merge version_1 into main
2026-03-07 20:19:22 +00:00
373e178b2e Update src/app/page.tsx 2026-03-07 20:19:18 +00:00
5e4dd6d514 Update src/app/app/subscriptions/page.tsx 2026-03-07 20:19:17 +00:00
abd606a01c Update src/app/app/calendar/page.tsx 2026-03-07 20:19:17 +00:00
0ff5f7d7f1 Update src/app/app/alerts/page.tsx 2026-03-07 20:19:16 +00:00
5 changed files with 8 additions and 16 deletions

View File

@@ -110,7 +110,7 @@ export default function AlertsPage() {
],
},
{
title: "Priority Alerts", description: "Critical financial notifications ranked by importance", bentoComponent: "3d-task-list", title: "Recent Alerts", items: [
title: "Priority Alerts", description: "Critical financial notifications ranked by importance", bentoComponent: "3d-task-list", items: [
{
icon: AlertCircle,
label: "Budget Overspend Warning", time: "2 hours ago"},

View File

@@ -71,7 +71,7 @@ export default function CalendarPage() {
{
title: "Payment Due Dates", description: "Calendar view showing all payment deadlines for the month", bentoComponent: "animated-bar-chart"},
{
title: "Recurring Transactions", description: "Automatically tracked subscriptions and recurring payments", bentoComponent: "3d-task-list", title: "Monthly Recurring", items: [
title: "Recurring Transactions", description: "Automatically tracked subscriptions and recurring payments", bentoComponent: "3d-task-list", items: [
{
icon: DollarSign,
label: "Netflix Subscription", time: "Every 15th"},

View File

@@ -113,7 +113,7 @@ export default function RecurringExpensesPage() {
],
},
{
title: "Renewal Timeline", description: "See upcoming subscription renewals at a glance", bentoComponent: "3d-task-list", title: "Upcoming Renewals", items: [
title: "Renewal Timeline", description: "See upcoming subscription renewals at a glance", bentoComponent: "3d-task-list", items: [
{
icon: Zap,
label: "Streaming Service", time: "In 2 days"},

View File

@@ -1,17 +1,11 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "FinControl - Your Money. Fully Controlled.", description: "Take charge of your finances with intelligent tracking, budgeting, and insights. See exactly where your money goes and make smarter financial decisions."};
title: "FinControl - Personal Finance Management", description: "Take charge of your finances with intelligent tracking, budgeting, and insights."};
export default function RootLayout({
children,
@@ -20,9 +14,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -220,7 +220,7 @@ export default function HomePage() {
tag="Why FinControl"
tagIcon={Heart}
title="Financial Clarity Starts Here"
description="Trusted by financial experts and SOC 2 Type II Certified. We built FinControl because managing personal finances shouldn't require a spreadsheet degree. Our mission is to make financial control intuitive, actionable, and empowering for everyone."
description="We built FinControl because managing personal finances shouldn't require a spreadsheet degree. Our mission is to make financial control intuitive, actionable, and empowering for everyone."
metrics={[
{
value: "500K+", title: "Active Users Trusting FinControl"},