aboutsummaryrefslogtreecommitdiff
path: root/src/app/layout.tsx
blob: 7f808958705af39c709f56368694256375f33b5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import type { Metadata } from "next";
import "./globals.css";

export const metadata: Metadata = {
  title: "Sensible Scholars",
  description: "Beyond the Classroom: Deeper Learning, Lasting Success.",
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en">
      <body className={`antialiased`}>{children}</body>
    </html>
  );
}