diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx
index 0a047be..229d24a 100644
--- a/src/pages/HomePage.tsx
+++ b/src/pages/HomePage.tsx
@@ -9,10 +9,10 @@ import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot";
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
-import PropertiesSection from './HomePage/sections/Properties';
import ContactSection from './HomePage/sections/Contact';
-export default function HomePage(): React.JSX.Element {
+
+import GallerySection from './HomePage/sections/Gallery';export default function HomePage(): React.JSX.Element {
return (
@@ -23,11 +23,11 @@ export default function HomePage(): React.JSX.Element {
-
+
);
}
diff --git a/src/pages/HomePage/sections/Gallery.tsx b/src/pages/HomePage/sections/Gallery.tsx
new file mode 100644
index 0000000..8ba36ce
--- /dev/null
+++ b/src/pages/HomePage/sections/Gallery.tsx
@@ -0,0 +1,83 @@
+import React from 'react';
+import ScrollReveal from '@/components/ui/ScrollReveal';
+import TextAnimation from '@/components/ui/TextAnimation';
+import ImageOrVideo from '@/components/ui/ImageOrVideo';
+import Tag from '@/components/ui/Tag';
+
+export default function GallerySection() {
+ const images = [
+ {
+ src: "https://storage.googleapis.com/webild/users/user_3G3RRYMNJY63CoZ96oJOAlJc2Et/uploaded-1783201278651-n1egshdk.jpg",
+ title: "Sústredenie pred štartom",
+ colSpan: "col-span-1 md:col-span-2",
+ rowSpan: "row-span-2"
+ },
+ {
+ src: "https://storage.googleapis.com/webild/users/user_3G3RRYMNJY63CoZ96oJOAlJc2Et/uploaded-1783201278652-k4urrscu.jpg",
+ title: "Súboj na trati",
+ colSpan: "col-span-1",
+ rowSpan: "row-span-1"
+ },
+ {
+ src: "https://storage.googleapis.com/webild/users/user_3G3RRYMNJY63CoZ96oJOAlJc2Et/uploaded-1783201278653-doj07as6.jpg",
+ title: "V plnom nasadení",
+ colSpan: "col-span-1",
+ rowSpan: "row-span-1"
+ },
+ {
+ src: "https://storage.googleapis.com/webild/users/user_3G3RRYMNJY63CoZ96oJOAlJc2Et/uploaded-1783201278654-948qc5yh.jpg",
+ title: "Detail prilby",
+ colSpan: "col-span-1",
+ rowSpan: "row-span-1"
+ },
+ {
+ src: "https://storage.googleapis.com/webild/users/user_3G3RRYMNJY63CoZ96oJOAlJc2Et/uploaded-1783201278654-0pk26pgo.jpg",
+ title: "Pretekársky špeciál",
+ colSpan: "col-span-1 md:col-span-2",
+ rowSpan: "row-span-1"
+ }
+ ];
+
+ return (
+
+
+
+
+
+
+
+ Zábery z pretekov, tréningov a zákulisia motoršportu. Každá fotografia zachytáva zlomok sekundy plný vášne a rýchlosti.
+
+
+
+
+
+ {images.map((img, idx) => (
+
+
+
+
+ {img.title}
+
+
+
+ ))}
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/pages/HomePage/sections/Properties.tsx b/src/pages/HomePage/sections/Properties.tsx
deleted file mode 100644
index ed31a3d..0000000
--- a/src/pages/HomePage/sections/Properties.tsx
+++ /dev/null
@@ -1,19 +0,0 @@
-// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
-// file as the canonical source for the "properties" section.
-
-import React from 'react';
-import FeaturesMediaColumns from "@/components/sections/features/FeaturesMediaColumns";
-
-export default function PropertiesSection(): React.JSX.Element {
- return (
-
-
-
- );
-}