fixing the meta data layout
All checks were successful
Build frontend / build (push) Successful in 39s
All checks were successful
Build frontend / build (push) Successful in 39s
This commit is contained in:
BIN
app/icon.png
Normal file
BIN
app/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 59 KiB |
@ -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>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user