import type {Metadata} from "next";
import "./globals.css";
import {Footer} from "@/components/footer";


export const metadata: Metadata = {
    title: "casaok Owner",
    description: "Casaok Owner",
};

export default function RootLayout({
                                       children,
                                   }: Readonly<{
    children: React.ReactNode;
}>) {
    return (
        <html lang="en">
        <body>
        <main>{children}</main>

        <Footer/>
        </body>
        </html>
    );
}
