fix(images): Clean up image paths, compress large images, and fix openinary URLs
This commit is contained in:
+2
-2
@@ -5,7 +5,7 @@ import Image from "next/image";
|
||||
import Link from "next/link";
|
||||
import { ArrowRight, Phone, MessageCircle } from "lucide-react";
|
||||
import { siteConfig } from "@/lib/data";
|
||||
import { cloudinaryUrl } from "@/lib/cloudinary";
|
||||
import { openinaryUrl } from "@/lib/openinary";
|
||||
|
||||
export function Hero() {
|
||||
const handleWhatsApp = () => {
|
||||
@@ -19,7 +19,7 @@ export function Hero() {
|
||||
<div className="absolute inset-0 z-0">
|
||||
<div className="absolute inset-0 bg-background/40 backdrop-blur-sm z-10" />
|
||||
<Image
|
||||
src={cloudinaryUrl("/images/Vinç hizmetleri/Ekran görüntüsü 2026-04-16 005221.png")}
|
||||
src={openinaryUrl("/images/vinc-hizmetleri/ekran-goruntusu-2026-04-16-005221.png")}
|
||||
alt="Industrial crane"
|
||||
fill
|
||||
priority
|
||||
|
||||
@@ -4,23 +4,23 @@ import { motion } from "framer-motion";
|
||||
import Image from "next/image";
|
||||
import Link from "next/link";
|
||||
import { ArrowRight } from "lucide-react";
|
||||
import { cloudinaryUrl } from "@/lib/cloudinary";
|
||||
import { openinaryUrl } from "@/lib/openinary";
|
||||
|
||||
const SERVICES = [
|
||||
{
|
||||
title: "Ağır Nakliyat",
|
||||
description: "Gabari dışı yüklerin özel low-bed araçlarla taşınması.",
|
||||
image: cloudinaryUrl("/images/Nakliyat-Taşımacılık/Ekran görüntüsü 2026-04-16 005533.png")
|
||||
image: openinaryUrl("/images/nakliyat-tasimacilik/ekran-goruntusu-2026-04-16-005533.png")
|
||||
},
|
||||
{
|
||||
title: "Mobil Vinç",
|
||||
description: "Yüksek tonajlı her türlü yük için teleskopik vinç çözümleri.",
|
||||
image: cloudinaryUrl("/images/Vinç hizmetleri/Ekran görüntüsü 2026-04-16 005221.png")
|
||||
image: openinaryUrl("/images/vinc-hizmetleri/ekran-goruntusu-2026-04-16-005221.png")
|
||||
},
|
||||
{
|
||||
title: "Sepetli Platform",
|
||||
description: "75 metreye kadar yüksek irtifa çalışma alanları.",
|
||||
image: cloudinaryUrl("/images/Sepetli platform hizmetleri/Ekran görüntüsü 2026-04-16 005332.png")
|
||||
image: openinaryUrl("/images/sepetli-platform-hizmetleri/ekran-goruntusu-2026-04-16-005332.png")
|
||||
}
|
||||
];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user