fixing the meta data layout
All checks were successful
Build frontend / build (push) Successful in 39s

This commit is contained in:
mouazkh
2026-03-21 17:45:13 +03:00
parent 485e4c2630
commit 552bbdd269
2 changed files with 12 additions and 7 deletions

BIN
app/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -13,19 +13,24 @@ const geistMono = Geist_Mono({
});
export const metadata = {
title: "SweetHome",
title: "Sweet Home",
description: "Discover premium furniture and home decor",
icons: {
icon: [{ url: "/logo.png", type: "image/png" }],
shortcut: [{ url: "/logo.png", type: "image/png" }],
apple: [{ url: "/logo.png", type: "image/png" }],
},
};
export default function Layout({ children }) {
return (
<html lang="ar" dir="rtl">
<html lang="ar" dir="rtl">
<head />
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
<ClientLayout>
{children}
</ClientLayout>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<ClientLayout>{children}</ClientLayout>
</body>
</html>
);
}
}