import type { Metadata } from "next";
import "./globals.css";

export const metadata: Metadata = {
  title: "The Grande 49 — Lilongwe, Malawi",
  description:
    "A detached 3-bedroom home at 49 Nkhadze Road, Lilongwe. Free Wi-Fi, free parking, breakfast included. Book securely by card from anywhere.",
};

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en">
      <body className="font-body min-h-screen">{children}</body>
    </html>
  );
}
