7 Commits

Author SHA1 Message Date
18f74035a4 Merge version_4 into main
Merge version_4 into main
2026-01-22 20:51:30 +00:00
87c5d95afa Update src/app/page.tsx 2026-01-22 20:51:25 +00:00
8be9aaa293 Update src/app/layout.tsx 2026-01-22 20:51:24 +00:00
0858879df7 Update src/app/globals.css 2026-01-22 20:51:23 +00:00
3e4604074b Merge version_3 into main
Merge version_3 into main
2026-01-22 20:48:36 +00:00
ecf4ea88d0 Merge version_2 into main
Merge version_2 into main
2026-01-22 20:45:29 +00:00
f437b0bb9d Merge version_1 into main
Merge version_1 into main
2026-01-22 20:42:32 +00:00
3 changed files with 10 additions and 31 deletions

View File

@@ -578,7 +578,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-plus-jakarta-sans), sans-serif; font-family: var(--font-inter), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -591,5 +591,5 @@ h3,
h4, h4,
h5, h5,
h6 { 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 type { Metadata } from "next";
import { Plus_Jakarta_Sans } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper"; import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag"; import Tag from "@/tag/Tag";
const plusJakartaSans = Plus_Jakarta_Sans({ const inter = Inter({
variable: "--font-plus-jakarta-sans", subsets: ["latin"], variable: "--font-inter", subsets: ["latin"],
}); });
export const metadata: Metadata = { export const metadata: Metadata = {
@@ -36,7 +36,7 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={`${plusJakartaSans.variable} antialiased`} className={`${inter.variable} antialiased`}
> >
<Tag /> <Tag />
{children} {children}

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; 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 TextAbout from "@/components/sections/about/TextAbout";
import FeatureProcessSteps from "@/components/sections/feature/FeatureProcessSteps"; import FeatureProcessSteps from "@/components/sections/feature/FeatureProcessSteps";
import ProductCardThree from "@/components/sections/product/ProductCardThree"; import ProductCardThree from "@/components/sections/product/ProductCardThree";
@@ -41,35 +41,14 @@ export default function LandingPage() {
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardCarousel <HeroBillboard
title="Discover Estonia: Where Baltic Beauty Meets Innovation" 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." description="Experience Nordic charm, pristine nature, and cutting-edge digital culture in Northern Europe's most captivating destination."
tag="Explore Estonia" tag="Explore Estonia"
tagIcon={Compass} tagIcon={Compass}
background={{ variant: "sparkles-gradient" }} 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/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"
}
]}
buttons={[ buttons={[
{ text: "Start Exploring", href: "features" }, { text: "Start Exploring", href: "features" },
{ text: "Plan Your Visit", href: "contact" } { text: "Plan Your Visit", href: "contact" }