37 lines
972 B
TypeScript
37 lines
972 B
TypeScript
import type React from "react"
|
|
import type { Metadata } from "next"
|
|
import { Geist, Geist_Mono } from "next/font/google"
|
|
import "./globals.css"
|
|
|
|
const geistSans = Geist({
|
|
subsets: ["latin"],
|
|
display: "swap",
|
|
variable: "--font-geist-sans",
|
|
})
|
|
|
|
const geistMono = Geist_Mono({
|
|
subsets: ["latin"],
|
|
display: "swap",
|
|
variable: "--font-geist-mono",
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: "SUSConecta - Conectando Pacientes e Profissionais de Saúde",
|
|
description:
|
|
"Plataforma inovadora que conecta pacientes e médicos de forma prática, segura e humanizada. Experimente o futuro dos agendamentos médicos.",
|
|
keywords: "saúde, médicos, pacientes, agendamento, telemedicina, SUS",
|
|
generator: 'v0.app'
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="pt-BR" className={`${geistSans.variable} ${geistMono.variable} antialiased`}>
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|