import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "Clima Shop",
  description: "Климатици, термопомпи и вентилация"
};

export default function RootLayout({
  children
}: Readonly<{ children: React.ReactNode }>) {
  return (
    <html lang="bg">
      <body>{children}</body>
    </html>
  );
}
