From 374a4119bc7c224490c0dbc6460f934468ad23cd Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 13:11:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 ++++++++------------------------------------- 1 file changed, 8 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ad44ffe..465afb0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,22 @@ import type { Metadata } from "next"; -import { Lato } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const lato = Lato({ - variable: "--font-lato", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Ammattimainen Kirjanpito | Kirjanpito Pro", description: "Luotettavat ja ammattitaitoiset kirjanpitopalvelut pienille ja keskisuurille yrityksille. Verosuunnittelu, palkkahallinto ja talousraportointi.", keywords: "kirjanpito, verotus, palkkahallinto, pk-yritys, kirjanpitäjä, talouspalvelut", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Ammattimainen Kirjanpito | Kirjanpito Pro", description: "Luotettavat kirjanpitopalvelut yrityksellesi. Yli 15 vuoden kokemus.", url: "https://kirjanpitopro.fi", siteName: "Kirjanpito Pro", type: "website"}, - twitter: { - card: "summary_large_image", title: "Ammattimainen Kirjanpito | Kirjanpito Pro", description: "Luotettavat kirjanpitopalvelut yrityksellesi. Yli 15 vuoden kokemus."}, -}; + title: "AQ Accounting Oy", description: "Professional accounting services for your business"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}