Midday / apps /website /src /app /insights /page.tsx
Jules
Final deployment with all fixes and verified content
c09f67c
import type { Metadata } from "next";
import { baseUrl } from "@/app/sitemap";
import { Insights } from "@/components/insights";
const title = "Financial Insights";
const description =
"Understand your business finances at a glance. Get weekly summaries, cash flow analysis, and clear explanations of revenue and spending trends.";
export const metadata: Metadata = {
title,
description,
keywords: [
"financial insights",
"business analytics",
"cash flow analysis",
"revenue tracking",
"spending analysis",
],
openGraph: {
title,
description,
type: "website",
url: `${baseUrl}/insights`,
},
twitter: {
card: "summary_large_image",
title,
description,
},
alternates: {
canonical: `${baseUrl}/insights`,
},
};
export default function Page() {
return <Insights />;
}