30 lines
870 B
TypeScript
30 lines
870 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter, DM_Serif_Display } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({ subsets: ["latin"], variable: "--font-inter" });
|
|
const display = DM_Serif_Display({
|
|
subsets: ["latin"],
|
|
weight: "400",
|
|
style: ["normal", "italic"],
|
|
variable: "--font-display",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Aartha — Your money. Your truth. Zero conflict.",
|
|
description:
|
|
"Subscription-only personal finance. Zero ads. Zero referral fees. Every insight aligned only with you.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{ children: React.ReactNode }>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<body className={`${inter.variable} ${display.variable} bg-cream font-sans text-ink antialiased`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|