Files
homepage/app/layout.tsx

39 lines
950 B
TypeScript
Raw Normal View History

2025-05-14 14:35:15 +02:00
import type React from "react"
import type { Metadata } from "next"
import { Inter } from "next/font/google"
import "./globals.css"
import { ThemeProvider } from "@/components/theme-provider"
import { Toaster } from "@/components/ui/toaster"
const inter = Inter({ subsets: ["latin"] })
export const metadata: Metadata = {
title: "TECHTONIC FAULT",
description: "Soluzioni software per aziende di qualsiasi dimensione.",
icons: {
icon: [
{
url: "/logo-icon.svg",
href: "/logo-icon.svg",
},
],
},
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="it" suppressHydrationWarning>
<body className={inter.className}>
<ThemeProvider attribute="class" defaultTheme="system" enableSystem disableTransitionOnChange={false}>
{children}
<Toaster />
</ThemeProvider>
</body>
</html>
)
}