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

@ -15,16 +15,21 @@ const geistMono = Geist_Mono({
export const metadata = { export const metadata = {
title: "Sweet Home", title: "Sweet Home",
description: "Discover premium furniture and home decor", 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 }) { export default function Layout({ children }) {
return ( return (
<html lang="ar" dir="rtl"> <html lang="ar" dir="rtl">
<head /> <head />
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}> <body
<ClientLayout> className={`${geistSans.variable} ${geistMono.variable} antialiased`}
{children} >
</ClientLayout> <ClientLayout>{children}</ClientLayout>
</body> </body>
</html> </html>
); );