4 Commits

Author SHA1 Message Date
108f07b0bd Update src/app/page.tsx 2026-03-03 21:06:03 +00:00
b583651168 Update src/app/page.tsx 2026-03-03 20:57:44 +00:00
2394a5e3ed Update src/app/layout.tsx 2026-03-03 20:57:43 +00:00
f51b74e8a0 Merge version_2 into main
Merge version_2 into main
2026-03-03 20:30:59 +00:00
2 changed files with 13 additions and 5 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"