diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8d3284f..6ca24e9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,28 @@ 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 { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -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"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Bókhald Accounting ehf | Fagleg Bókhaldsþjónusta á Íslandi", description: "Heildstæð bókhaldsþjónusta fyrir íslensk fyrirtæki. Ársreikningar, skattaráðgjöf, launavinnsla og fleira. Fagmennska, traust og persónuleg umönnun.", keywords: "bókhald, accounting, ársreikningar, skattaráðgjöf, launavinnsla, Reykjavík, Ísland", metadataBase: new URL("https://bokhaldehs.is"), - alternates: { - canonical: "https://bokhaldehs.is"}, - openGraph: { - title: "Bókhald Accounting ehf | Fagleg Bókhaldsþjónusta", description: "Heildstæð bókhaldsþjónusta fyrir íslensk fyrirtæki með fagmennsku og trausti.", url: "https://bokhaldehs.is", siteName: "Bókhald Accounting ehf", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/financial-charts-kpi-metrics-displays-office_482257-126638.jpg", alt: "Bókhald Accounting ehf - Professional Accounting Services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Bókhald Accounting ehf", description: "Fagleg bókhaldsþjónusta fyrir nútíma fyrirtæki", images: ["http://img.b2bpic.net/free-photo/financial-charts-kpi-metrics-displays-office_482257-126638.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Bókhald Accounting - Faglegt bókhald fyrir íslensk fyrirtæki", description: "Heildstæð bókhaldsþjónusta með nákvæmni, trausti og persónulegri umönnun fyrir íslensk fyrirtæki."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +