CubLearn-Frontend/src/app/layout.jsx

26 lines
603 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Header from "@/components/Header";
import WrapperComponent from "@/components/WrapperComponent";
import "@rainbow-me/rainbowkit/styles.css";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "CubLearn",
description: "Blockchain tabanlı çevrimiçi eğitim platformu.",
};
export default function RootLayout({ children }) {
return (
<html lang="tr">
<body className={inter.className}>
<WrapperComponent>
<Header />
{children}
</WrapperComponent>
</body>
</html>
);
}