website/app/layout.tsx

31 lines
615 B
TypeScript
Raw Normal View History

2025-11-05 11:28:53 +00:00
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
2025-11-05 11:28:53 +00:00
import "./globals.css";
const poppins = Poppins({
variable: "--font-poppins",
2025-11-05 11:28:53 +00:00
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
2025-11-05 11:28:53 +00:00
});
export const metadata: Metadata = {
title: "Attune Heart Therapy",
description: "Attune Heart Therapy",
2025-11-05 11:28:53 +00:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${poppins.variable} font-sans antialiased`}
2025-11-05 11:28:53 +00:00
>
{children}
</body>
</html>
);
}