mirror of
https://github.com/Techtonic-Fault/homepage.git
synced 2026-01-22 21:18:22 +00:00
39 lines
950 B
TypeScript
39 lines
950 B
TypeScript
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>
|
|
)
|
|
}
|