Merge version_3 into main #5

Merged
bender merged 2 commits from version_3 into main 2026-03-03 20:57:51 +00:00
2 changed files with 16 additions and 8 deletions

View File

@@ -1,8 +1,14 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Create Next App", description: "Generated by create next app"};
@@ -14,7 +20,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={inter.className}>{children}
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -8,7 +8,7 @@ import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Clock, MapPin, Fuel, Droplet } from 'lucide-react';
import { Clock, MapPin, Fuel, Droplet, CheckCircle } from 'lucide-react';
export default function LandingPage() {
return (
@@ -48,7 +48,7 @@ export default function LandingPage() {
title="Поуздано гориво за ваш пут"
description="Квалитетно гориво и брза услуга у Поточцу. Отворени сваки дан од 06:00 до 21:00."
buttons={[
{ text: "Позови: +381 64 123 4567", href: "tel:+381641234567" },
{ text: "Позови одмах", href: "tel:+381641234567" },
{ text: "Погледај локацију", href: "#location" }
]}
buttonAnimation="slide-up"
@@ -64,9 +64,9 @@ export default function LandingPage() {
{ text: "Минимална чекања", href: "#" }
],
stats: [
{ title: "Дизел", values: [155, 156, 155], valueSuffix: "/л", description: "Поверена цена дизела" },
{ title: "Бензин", values: [162, 163, 162], valueSuffix: "/л", description: "Поверена цена бензина" },
{ title: "Отворено", values: [6, 7, 6], description: "Сваки дан до 21:00" }
{ title: "Дизел", values: [155, 156, 155], valueSuffix: "/л", description: "Поверена цена дизела", trustBadge: "Certified Quality" },
{ title: "Бензин", values: [162, 163, 162], valueSuffix: "/л", description: "Поверена цена бензина", trustBadge: "24/7 Verified Availability" },
{ title: "Отворено", values: [6, 7, 6], description: "Сваки дан до 21:00", trustBadge: "ISO Certified" }
],
chartTitle: "Недељне потреб", chartData: [
{ value: 80 },