diff --git a/src/app/documentary/page.tsx b/src/app/documentary/page.tsx new file mode 100644 index 0000000..5121544 --- /dev/null +++ b/src/app/documentary/page.tsx @@ -0,0 +1,152 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; + +export default function DocumentaryPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Projects", id: "/projects" }, + { name: "Vision", id: "/about" }, + { name: "Connect", id: "/connect" }, + { name: "Writing", id: "/writing" }, + { name: "Violin", id: "/violin" }, + { name: "Documentary", id: "/documentary" }, + { name: "Navo", id: "/navo" }, + { name: "Stanford", id: "/stanford" }, + ]; + + const footerColumns = [ + { + title: "Navigation", items: [ + { label: "Home", href: "/" }, + { label: "Projects", href: "/projects" }, + { label: "Vision", href: "/about" }, + { label: "Contact", href: "/contact" }, + ], + }, + { + title: "Connect", items: [ + { label: "Calendly", href: "https://calendly.com/karu-navolab/growth-engine-demo-navo-lab" }, + { label: "Substack", href: "https://substack.com/@karuthompson" }, + { label: "X", href: "https://x.com/KaruThompson" }, + { label: "Email", href: "mailto:hello@example.com" }, + ], + }, + { + title: "Resources", items: [ + { label: "Newsletter", href: "#" }, + { label: "Blog", href: "/writing" }, + { label: "Privacy", href: "#" }, + { label: "Terms", href: "#" }, + ], + }, + ]; + + return ( + + + +
+ +
+ +
+ It requires patience, empathy, and an unwavering commitment to the subjects' stories. Every frame is a decision, every cut a statement about what matters most.", "This feature film explores narratives that traditional media overlooks—the quiet moments that define us, the challenges that shape our character, and the interconnections that bind us together. Through cinematography, sound design, and thoughtful editing, we transform lived experience into visual poetry." + ]} + useInvertedBackground={true} + showBorder={true} + buttons={[{ text: "View Full Details", href: "#" }]} + buttonAnimation="blur-reveal" + /> +
+ +
+ Visual storytelling through carefully composed frames. Capturing authentic moments with artistic intent and technical precision.", tag: "Visual Art", imageSrc: "https://images.unsplash.com/photo-1533000971552-74f7b2265582?w=500&h=400&fit=crop", imageAlt: "Camera equipment" + }, + { + id: "2", title: "Sound Design", description: "The voice of film is often unheard. Through strategic sound design, we amplify emotion and create an immersive auditory landscape.", tag: "Audio", imageSrc: "https://images.unsplash.com/photo-1514320291840-2e0a9bf2a9ae?w=500&h=400&fit=crop", imageAlt: "Sound equipment" + }, + { + id: "3", title: "Editing & Narrative", description: "The edit suite is where stories find their rhythm. Precise editing transforms raw footage into cohesive narrative that resonates with audiences.", tag: "Post-Production", imageSrc: "https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=500&h=400&fit=crop", imageAlt: "Editing workstation" + }, + ]} + /> +
+ +
+ +
+ + +
+ ); +}