Files
SweetHome/app/layout.js

31 lines
688 B
JavaScript
Raw Normal View History

2026-01-28 17:32:36 +03:00
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import ClientLayout from "./ClientLayout";
2026-01-28 17:32:36 +03:00
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata = {
title: "SweetHome",
description: "Discover premium furniture and home decor",
};
export default function Layout({ children }) {
2026-01-28 17:32:36 +03:00
return (
<html lang="en">
<head />
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
<ClientLayout>
{children}
</ClientLayout>
2026-01-28 17:32:36 +03:00
</body>
</html>
);
}