27 lines
643 B
TypeScript
27 lines
643 B
TypeScript
import type React from "react"
|
|
import type { Metadata } from "next"
|
|
import { Analytics } from "@vercel/analytics/next"
|
|
import "./globals.css"
|
|
|
|
export const metadata: Metadata = {
|
|
title: "School For Schools",
|
|
description: "Combining expertise in education with cutting-edge technology",
|
|
generator: "v0.app",
|
|
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className="font-sans antialiased" style={{ fontFamily: "DIN Alternate, sans-serif" }} suppressHydrationWarning>
|
|
{children}
|
|
<Analytics />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|