4 Commits

Author SHA1 Message Date
d066bffc07 Update src/app/layout.tsx 2026-03-05 01:11:46 +00:00
981b0568bc Merge version_1 into main
Merge version_1 into main
2026-03-05 01:10:40 +00:00
e6cfdac2ea Merge version_1 into main
Merge version_1 into main
2026-03-05 01:09:50 +00:00
525b5734ea Merge version_1 into main
Merge version_1 into main
2026-03-05 01:08:31 +00:00

View File

@@ -1,57 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", 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 = { 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"), 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."};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="is">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1420,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }