Update src/app/film-details/page.tsx

This commit is contained in:
2026-04-22 02:30:57 +00:00
parent 782d559c1c
commit 72e37c2f5e

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Work",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Work", id: "/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Ben McDill"
/>
@@ -44,16 +42,8 @@ export default function LandingPage() {
title="Technical Specs"
description="Equipment and techniques used for this project."
features={[
{
title: "4K RAW",
description: "High fidelity capture.",
imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-cinema-movie-theater_23-2151928691.jpg",
},
{
title: "Anamorphic",
description: "Widescreen aesthetic.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-oily-bubbles-droplets-colourful-watery-backdrop_23-2148290160.jpg",
},
{ title: "4K RAW", description: "High fidelity capture.", imageSrc: "http://img.b2bpic.net/free-photo/3d-rendering-cinema-movie-theater_23-2151928691.jpg" },
{ title: "Anamorphic", description: "Widescreen aesthetic.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-oily-bubbles-droplets-colourful-watery-backdrop_23-2148290160.jpg" },
]}
/>
</div>
@@ -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" },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/solid-green-wall-textured-backdrop_53876-143106.jpg?_wi=4"
imageSrc="http://img.b2bpic.net/free-photo/solid-green-wall-textured-backdrop_53876-143106.jpg"
logoText="BM"
columns={[
{
title: "Navigation",
items: [
{
label: "Work",
href: "/",
},
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{ title: "Navigation", items: [{ label: "Work", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}