Skip to content
Snippets Groups Projects

Feat/#58 dashboard dokter

Merged Agsha Athalla Nurkareem requested to merge feat/#58-dashboard-dokter into dev
Compare and
2 files
+ 246
0
Preferences
Compare changes
Files
2
+ 22
0
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "../globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Dashboard Dokter - Seno Medika Clinic",
icons: "favicon.ico",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}