Merge version_4 into main #4

Merged
development merged 3 commits from version_4 into main 2026-01-22 20:51:31 +00:00
3 changed files with 10 additions and 31 deletions

View File

@@ -578,7 +578,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-plus-jakarta-sans), sans-serif;
font-family: var(--font-inter), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -591,5 +591,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-plus-jakarta-sans), sans-serif;
font-family: var(--font-inter), sans-serif;
}

View File

@@ -1,11 +1,11 @@
import type { Metadata } from "next";
import { Plus_Jakarta_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const plusJakartaSans = Plus_Jakarta_Sans({
variable: "--font-plus-jakarta-sans", subsets: ["latin"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
@@ -36,7 +36,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${plusJakartaSans.variable} antialiased`}
className={`${inter.variable} antialiased`}
>
<Tag />
{children}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
import TextAbout from "@/components/sections/about/TextAbout";
import FeatureProcessSteps from "@/components/sections/feature/FeatureProcessSteps";
import ProductCardThree from "@/components/sections/product/ProductCardThree";
@@ -41,35 +41,14 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
<HeroBillboard
title="Discover Estonia: Where Baltic Beauty Meets Innovation"
description="Experience Nordic charm, pristine nature, and cutting-edge digital culture in Northern Europe's most captivating destination."
tag="Explore Estonia"
tagIcon={Compass}
background={{ variant: "sparkles-gradient" }}
mediaItems={[
{
imageSrc: "https://img.b2bpic.net/free-photo/natural-beautiful-winter-landscape_23-2150264612.jpg", imageAlt: "Estonian landscape with forests and lakes"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-historical-castle-dark-cloudy-sky_181624-8799.jpg", imageAlt: "Historic Tallinn Old Town medieval architecture"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-landscape-pine-forest-summer-day-nature-wallpaper-tall-trees-pine-trees-growing-old-forest_639032-730.jpg", imageAlt: "Dense Estonian forest and woodlands"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/land-with-lot-bushes-near-sea-cloudy-sky_181624-13156.jpg", imageAlt: "Serene Estonian lake landscape"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-shot-sandy-beach-cloudy-sky-vlissingen-zeeland-netherlands_181624-6827.jpg", imageAlt: "Baltic coastal scenery"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/photovoltaics-factory-management-team-looking-manufacturing-data-notebook_482257-119418.jpg", imageAlt: "Estonia digital innovation hub"
},
{
imageSrc: "https://img.b2bpic.net/free-vector/estonia-representative-elements-collection_1078-103.jpg", imageAlt: "Estonian cultural heritage and traditions"
}
]}
imageSrc="https://img.b2bpic.net/free-photo/natural-beautiful-winter-landscape_23-2150264612.jpg"
imageAlt="Estonian landscape with forests and lakes"
buttons={[
{ text: "Start Exploring", href: "features" },
{ text: "Plan Your Visit", href: "contact" }