From 54403da1c1b1cf8801946fad24ba2b4e288cf898 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 10:51:56 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4ee606f..c0b97e0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,18 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; -import { Archivo } 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 dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); - export const metadata: Metadata = { title: "KlimaComfort AS | HVAC Solutions Stavanger", description: "Premium HVAC solutions in Stavanger, Norway. Ventilation, cooling, heat pumps, and technical services for residential and commercial buildings.", keywords: "HVAC, ventilation systems, cooling, heat pumps, Stavanger, technical service, energy assessment", metadataBase: new URL("https://klimacomfort.no"), alternates: { @@ -46,9 +40,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From 603afa93894a6d3c9be03aa3fbf5ccfa29e09b16 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 10:51:56 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 34 +++++++++++++++++++++++----------- 1 file changed, 23 insertions(+), 11 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index efb2e35..e97c555 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,21 +9,21 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import ContactText from '@/components/sections/contact/ContactText'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; -import { Wind, Zap, Award, Star } from 'lucide-react'; +import { Wind, Zap, Award, Star, CheckCircle, Lock, Headphones, TrendingUp } from 'lucide-react'; export default function LandingPage() { return (