diff --git a/app/arak/page.tsx b/app/arak/page.tsx index 1961f96..3af69d7 100644 --- a/app/arak/page.tsx +++ b/app/arak/page.tsx @@ -102,7 +102,7 @@ export default function PricingPage() { diff --git a/app/layout.tsx b/app/layout.tsx index 2efe48d..c2e7e93 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -2,6 +2,7 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { translations } from "@/lib/translations"; +import { GoogleTagManager, GoogleAnalytics } from '@next/third-parties/google' const inter = Inter({ variable: "--font-inter", @@ -57,6 +58,8 @@ export default function RootLayout({ }>) { return ( + + diff --git a/components/feature-section.tsx b/components/feature-section.tsx index 541aae8..a343cc1 100644 --- a/components/feature-section.tsx +++ b/components/feature-section.tsx @@ -58,7 +58,7 @@ const FeatureSection = ({ href ? ( diff --git a/components/gallery-dialog.tsx b/components/gallery-dialog.tsx index 93f72b9..8556d27 100644 --- a/components/gallery-dialog.tsx +++ b/components/gallery-dialog.tsx @@ -74,25 +74,25 @@ export function GalleryDialog({ isOpen, onClose, images, vehicleName, categoryNa {/* Close Button */} {/* Header Info */} -
-

- {categoryName} - {vehicleName} +
+

+ {categoryName} + {vehicleName}

-
- +
+ {currentIndex + 1} / {images.length} Kép
{/* Main Stage */} -
+
{images.length > 0 && ( -
+
{`${vehicleName} - {/* Vignette Overlay */} -
+ {/* Vignette Overlay - Lighter for object-contain */} +
)} @@ -129,20 +129,20 @@ export function GalleryDialog({ isOpen, onClose, images, vehicleName, categoryNa {/* Navigation Handles */}
{/* Thumbnails Sidebar/Bottom Bar */} -
+
{images.map((img, idx) => ( diff --git a/components/navbar.tsx b/components/navbar.tsx index 3acd324..cf27ba1 100644 --- a/components/navbar.tsx +++ b/components/navbar.tsx @@ -44,20 +44,20 @@ const Navbar = ({ darkMode = false }: NavbarProps) => {