import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "3D Innovate - Profesjonell 3D Printing", description: "Leverandør av høykvalitets 3D-printing tjenester. Raskt, presist og pålitelig prototyping og produksjon.", keywords: "3D printing, prototyping, 3D modeller, printing service", openGraph: { title: "3D Innovate - Profesjonell 3D Printing", description: "Transformer dine ideer til virkelighet med 3D Innovate", siteName: "3D Innovate"}, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}