web/src/app/layout.jsx

19 lines
430 B
React
Raw Normal View History

2024-01-10 11:04:28 +03:30
import "../../style/globals.css";
import "../../style/fontiran.css";
import "swiper/css";
import "react-image-gallery/styles/css/image-gallery.css";
import Chapar from "plugins/Chapar";
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default async function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}