diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6713378..9af3f6a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,18 +6,49 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "TradeLog - Trading Journal & Performance Analytics", + description: "Track trades, analyze performance metrics, and document lessons learned. Minimalist trading journal for serious traders.", + keywords: "trading journal, trade log, trading analytics, performance tracking, trading statistics", + metadataBase: new URL("https://tradelog.example.com"), + alternates: { + canonical: "https://tradelog.example.com", + }, + openGraph: { + title: "TradeLog - Master Your Trading", + description: "Record, analyze, and improve your trading with a clean minimalist journal designed for serious traders.", + type: "website", + siteName: "TradeLog", + images: [ + { + url: "https://tradelog.example.com/og-image.jpg", + alt: "TradeLog Trading Journal Dashboard", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "TradeLog - Trading Journal", + description: "Track every trade, analyze your performance, and refine your strategy.", + images: ["https://tradelog.example.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -26,7 +57,9 @@ export default function RootLayout({ return ( - + {children}