Merge version_6 into main #8
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${archivo.variable} antialiased`}
|
||||
>
|
||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
|
||||
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="compact"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="semibold"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
@@ -103,6 +103,8 @@ export default function LandingPage() {
|
||||
metrics={[
|
||||
{ value: "20+", title: "Years Industry Experience" },
|
||||
{ value: "500+", title: "Projects Completed" },
|
||||
{ value: "100%", title: "ISO Certified" },
|
||||
{ value: "24/7", title: "Technical Support" },
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
@@ -120,9 +122,13 @@ export default function LandingPage() {
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "1", value: "100%", description: "Long industry experience with proven technical routines and quality standards across all projects."},
|
||||
id: "1", value: "360°", description: "Total technical responsibility from design through installation, maintenance, and rehabilitation."},
|
||||
{
|
||||
id: "2", value: "360°", description: "Total technical responsibility from design through installation, maintenance, and rehabilitation."},
|
||||
id: "2", value: "ISO", description: "Certified and compliant with all Norwegian energy efficiency standards and regulations."},
|
||||
{
|
||||
id: "3", value: "500+", description: "Successfully completed projects with proven technical routines and quality standards."},
|
||||
{
|
||||
id: "4", value: "20+", description: "Years of industry experience delivering premium climate solutions with expertise."},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
@@ -154,6 +160,12 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "4", name: "Hilde Andersen", role: "Operations Manager", company: "Energy Solutions Norway", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3", imageAlt: "Hilde Andersen"},
|
||||
{
|
||||
id: "5", name: "Morten Tøfte", role: "Property Owner", company: "Stavanger Real Estate Group", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4", imageAlt: "Morten Tøfte"},
|
||||
{
|
||||
id: "6", name: "Ingrid Larsen", role: "Facility Director", company: "Nordic Building Systems", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=5", imageAlt: "Ingrid Larsen"},
|
||||
]}
|
||||
carouselMode="buttons"
|
||||
ariaLabel="Customer testimonials section"
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-archivo), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-archivo), sans-serif;
|
||||
font-family: var(--font-dm-sans), sans-serif;
|
||||
}
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #000612e6;;
|
||||
--primary-cta: #15479c;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--accent: #e2e2e2;;
|
||||
--background-accent: #c4c4c4;; */
|
||||
/* --background: #0f172a;;
|
||||
--card: #1e293b;;
|
||||
--foreground: #f0f8ff;;
|
||||
--primary-cta: #3b82f6;;
|
||||
--secondary-cta: #1e293b;;
|
||||
--accent: #0ea5e9;;
|
||||
--background-accent: #0284c7;; */
|
||||
|
||||
--background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #000612e6;;
|
||||
--primary-cta: #15479c;;
|
||||
--background: #0f172a;;
|
||||
--card: #1e293b;;
|
||||
--foreground: #f0f8ff;;
|
||||
--primary-cta: #3b82f6;;
|
||||
--primary-cta-text: #ffffff;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--secondary-cta: #1e293b;;
|
||||
--secondary-cta-text: #000612e6;;
|
||||
--accent: #e2e2e2;;
|
||||
--background-accent: #c4c4c4;;
|
||||
--accent: #0ea5e9;;
|
||||
--background-accent: #0284c7;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user