Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 108f07b0bd | |||
| b583651168 | |||
| 2394a5e3ed | |||
| f51b74e8a0 |
@@ -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: `
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user