import type { Metadata } from "next"; import { Inter } from "next/font/google"; import { Toaster } from "@/components/ui/sonner"; import "./globals.css"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter", }); export const metadata: Metadata = { title: "ScaleSite - AI & Web Solutions", description: "Premium websites and intelligent automations starting at just 50€. Built for growth, designed for the future.", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}