From 72e37c2f5ee29876cd4afdb8a9a6e29789ec9a48 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 22 Apr 2026 02:30:57 +0000 Subject: [PATCH] Update src/app/film-details/page.tsx --- src/app/film-details/page.tsx | 74 +++++++++-------------------------- 1 file changed, 18 insertions(+), 56 deletions(-) diff --git a/src/app/film-details/page.tsx b/src/app/film-details/page.tsx index ab5d1b5..92e045a 100644 --- a/src/app/film-details/page.tsx +++ b/src/app/film-details/page.tsx @@ -7,29 +7,27 @@ import FooterMedia from '@/components/sections/footer/FooterMedia'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; -export default function LandingPage() { +export default function FilmDetailsPage() { return ( @@ -67,50 +57,22 @@ export default function LandingPage() { title="Related Projects" description="Similar visual styles." products={[ - { - id: "r1", - name: "Echoes", - price: "2023", - variant: "Noir", - imageSrc: "http://img.b2bpic.net/free-photo/view-empty-soccer-stadium-with-fantasy-dreamy-sky_23-2151563127.jpg", - }, - { - id: "r2", - name: "City", - price: "2022", - variant: "Urban", - imageSrc: "http://img.b2bpic.net/free-photo/young-man-running-night-city-streets_23-2149285659.jpg", - }, + { id: "r1", name: "Echoes", price: "2023", variant: "Noir", imageSrc: "http://img.b2bpic.net/free-photo/view-empty-soccer-stadium-with-fantasy-dreamy-sky_23-2151563127.jpg" }, + { id: "r2", name: "City", price: "2022", variant: "Urban", imageSrc: "http://img.b2bpic.net/free-photo/young-man-running-night-city-streets_23-2149285659.jpg" }, ]} /> ); -} +} \ No newline at end of file