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 = {
|
||||
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">
|
||||
<head />
|
||||
<body className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
|
||||
<ClientLayout>
|
||||
{children}
|
||||
</ClientLayout>
|
||||
<body
|
||||
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
|
||||
>
|
||||
<ClientLayout>{children}</ClientLayout>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user