NVAR Studios
  • Services
    Photography Commercial Photography Corporate Headshots Product Photography Digital Brand Strategy Web Development SEO Services
  • Work
  • About
  • Contact
Book
  • Services
  • Work
  • About
  • Contact
Book Consultation
import { useState, useEffect, useRef } from "react"; // ============================================ // NVAR STUDIOS — SPLIT-SCREEN GATEWAY // Two worlds. One brand. Real content. // ============================================ const C = { bg: "#0a0a08", bgWarm: "#0e0d0b", surface: "#141311", surfaceLight: "#1c1a17", elevated: "#222018", gold: "#c9a96e", goldLight: "#dfc195", goldDim: "#8a7345", cream: "#f0ebe0", creamSoft: "#d4cfc7", text: "#c8c0b4", textMuted: "#8a8278", textDim: "#5e5850", blush: "#c4917a", sage: "#8a9e7e", slate: "#7a8b99", }; const FD = "'Cormorant Garamond', Georgia, serif"; const FB = "'Manrope', sans-serif"; // Real image URLs from your Squarespace export (your actual Sony A7 shots) const IMAGES = { headshot1: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/9fd1dfb2-38a0-4588-9419-ae8a54574a24/A7405115-Enhanced-NR.jpg", headshot2: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/81ee03bb-8121-4b93-9806-442b82130912/A7405260.jpg", headshot3: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/04deaebf-5c01-4219-9beb-0508f572bdf7/A7405265.jpg", headshot4: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/b2f34fd9-83ac-402c-bd20-830deea7fb8a/A7405232.jpg", headshot5: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/ba8d3ebb-4c9f-48dd-b6cf-0dd2c52fadd5/A7405229.jpg", headshot6: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/b9941cdc-ae63-476d-b591-4027445950f3/A7405283.jpg", grad1: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/ed5a83ec-0ba5-4c57-80ac-09b08130aeff/A7403590.jpg", grad2: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/ec74d5cc-5585-4dfa-964a-744e862bae78/A7403221.jpg", grad3: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/62eabb43-2e7d-4fac-b5ba-7351dfe830bd/A7403232.jpg", grad4: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/681122bd-5b20-41b7-b508-a1cd70f5fea7/A7403235.jpg", grad5: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/529b1739-87cb-4cd4-a2dd-f1e92c4b0eba/A7403267.jpg", grad6: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/d7b82a79-49f0-4eec-ad59-71c6f943a2c4/A7403293.jpg", grad7: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/f90fbe84-6c02-44ec-91c3-e21afd01117a/A7403424.jpg", grad8: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/71065430-6f60-4e35-a086-622aa83194a8/A7403607.jpg", portrait1: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/8ffa287d-2a8b-43ca-9dc1-1027924b6b30/A7400344.jpg", portrait2: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/0b87ae71-c87b-46b3-a413-58c411ef4575/A7405246.jpg", portrait3: "https://images.squarespace-cdn.com/content/v1/6859964ed97ce53f501dc458/98228588-e92d-4713-a0d1-fd4697c6932c/A7403369.jpg", }; // ============================================ // HOOKS // ============================================ function useInView(t = 0.1) { const ref = useRef(null); const [v, setV] = useState(false); useEffect(() => { const el = ref.current; if (!el) return; const obs = new IntersectionObserver(([e]) => { if (e.isIntersecting) setV(true); }, { threshold: t, rootMargin: "0px 0px -40px 0px" }); obs.observe(el); return () => obs.disconnect(); }, [t]); return [ref, v]; } function Reveal({ children, delay = 0, dir = "up", style = {} }) { const [ref, vis] = useInView(0.08); const t = { up: "translateY(40px)", left: "translateX(-40px)", right: "translateX(40px)", scale: "scale(0.96)" }; return (
{children}
); } function Tag({ children, center }) { return (
{children}
); } function Divider() { return
; } function Img({ src, alt = "", style = {} }) { return {alt}; } // ============================================ // SPLIT-SCREEN GATEWAY // ============================================ function Gateway({ onSelect }) { const [hover, setHover] = useState(null); // "business" | "personal" | null const [loaded, setLoaded] = useState(false); useEffect(() => { setTimeout(() => setLoaded(true), 1800); }, []); const businessWidth = hover === "business" ? "60%" : hover === "personal" ? "40%" : "50%"; const personalWidth = hover === "personal" ? "60%" : hover === "business" ? "40%" : "50%"; return (
{/* Loading overlay */}
NVAR STUDIOS
Lincoln, Nebraska
{/* Center logo/brand bar */}
NVAR STUDIOS
{/* BUSINESS SIDE */}
setHover("business")} onMouseLeave={() => setHover(null)} onClick={() => onSelect("business")} style={{ width: businessWidth, height: "100%", position: "relative", cursor: "pointer", transition: "width 0.7s cubic-bezier(0.16,1,0.3,1)", overflow: "hidden", }} >
For Businesses

Brand Strategy
& Commercial Photography

Marketing services and content strategies to grow small businesses.

Enter →
{/* CENTER DIVIDER LINE */}
{/* PERSONAL SIDE */}
setHover("personal")} onMouseLeave={() => setHover(null)} onClick={() => onSelect("personal")} style={{ width: personalWidth, height: "100%", position: "relative", cursor: "pointer", transition: "width 0.7s cubic-bezier(0.16,1,0.3,1)", overflow: "hidden", }} >
For You

Portraits, Graduation
& Couples

Timeless, magazine-worthy photography for life's biggest moments.

Enter →
{/* Bottom tag */}
(402) 610-4480  ·  nvarstudios@gmail.com
); } // ============================================ // BUSINESS EXPERIENCE // ============================================ function BusinessPage({ onBack }) { return (
{/* Hero */}
For Businesses

Marketing services & content strategies to grow small businesses.

Intuitive content strategy and digital marketing for small companies. From photography to web development — we handle it all.

Book a Consultation
{/* Services — from your actual Squarespace content */}
What We Offer

End-to-end creative solutions

{[ { n: "01", t: "Business Strategy & Consulting", items: ["Operational optimization", "Workflow design", "Systems setup"] }, { n: "02", t: "Branding & Creative Direction", items: ["Logo / identity", "Brand messaging", "Visual branding"] }, { n: "03", t: "Digital Marketing Solutions", items: ["Website setup", "Social content strategy", "SEO & Google Business"] }, { n: "04", t: "Content & Media Services", items: ["Photography", "Videography", "Advertising materials"] }, ].map((s, i) => ( ))}
{/* Portfolio with real images */}
Selected Work

Professional headshots & commercial work

{[IMAGES.headshot1, IMAGES.headshot3, IMAGES.headshot4, IMAGES.headshot5, IMAGES.headshot6, IMAGES.portrait2].map((img, i) => ( ))}
); } function ServiceCard({ n, t, items }) { const [h, setH] = useState(false); return (
setH(true)} onMouseLeave={() => setH(false)} style={{ background: h ? C.surfaceLight : C.surface, padding: "2.5rem", cursor: "pointer", transition: "background 0.5s", position: "relative", overflow: "hidden" }}>
{n}

{t}

{items.map((item, i) => (
{item}
))}
); } // ============================================ // PERSONAL EXPERIENCE // ============================================ function PersonalPage({ onBack }) { return (
{/* Hero */}
Portraits · Graduation · Couples

Photography that feels as real as the moment.

When you book with me, you're not just getting someone who knows how to shoot. You're getting someone who shows up with professionalism, creativity, and energy that brings your vision to life.

Book a Session
{/* Gallery with real graduation/portrait images */}
The Gallery

Real moments, real people

{[IMAGES.grad2, IMAGES.grad3, IMAGES.grad4, IMAGES.grad5, IMAGES.grad6, IMAGES.grad7, IMAGES.grad8, IMAGES.portrait1, IMAGES.portrait3].map((img, i) => ( ))}
{/* Session packages — from your actual Squarespace pricing */}
Packages

Book a session

{[ { title: "Graduation Bundle", price: "$250", color: C.blush, desc: "Celebrate your achievement with timeless, magazine-worthy portraits that honor this once-in-a-lifetime moment.", includes: ["1 hour on location session", "30 professionally edited images", "Location of your choice", "Social media & print ready"], }, { title: "Couples Bundle", price: "$300", color: C.gold, desc: "Capture real love, real moments, and real chemistry. No stiff posing — just the two of you being yourselves.", includes: ["1 hour on location", "30 professionally edited images", "Location of your choice", "Gentle direction throughout"], }, { title: "Premium Headshots", price: "$200", color: C.sage, desc: "For business owners, creatives, or anyone building a personal brand. More time, more variety, more content.", includes: ["60-minute session", "Up to 2 outfits & locations", "25+ edited images", "5 high-end retouched photos"], }, ].map((s, i) => ( ))}

Standard Headshot available at $150 — 30-minute session, 1 outfit, 10-12 edited images

); } function GalleryImage({ src }) { const [h, setH] = useState(false); return (
setH(true)} onMouseLeave={() => setH(false)} style={{ breakInside: "avoid", marginBottom: "1rem", overflow: "hidden", cursor: "pointer" }}>
); } function PortfolioImage({ src }) { const [h, setH] = useState(false); return (
setH(true)} onMouseLeave={() => setH(false)} style={{ overflow: "hidden", cursor: "pointer", aspectRatio: "3/4" }}>
); } function SessionCard({ title, price, desc, includes, color }) { const [h, setH] = useState(false); return (
setH(true)} onMouseLeave={() => setH(false)} style={{ background: C.surface, padding: "2.2rem 1.8rem", position: "relative", overflow: "hidden", transition: "transform 0.5s cubic-bezier(0.16,1,0.3,1)", transform: h ? "translateY(-4px)" : "none" }}>
{price}

{title}

{desc}

{includes.map((item, i) => (
{item}
))}
Book Now →
); } // ============================================ // SHARED COMPONENTS // ============================================ function NavBar({ onBack, accent = C.gold, label }) { return (
NVAR STUDIOS
Contact
); } function CTASection({ personal }) { const accent = personal ? C.blush : C.gold; return (
Let's Talk

{personal ? "Your story is " : "Ready to elevate "} {personal ? "waiting." : "your brand?"}

{personal ? "Every session starts with a conversation. Tell me what matters, and we'll create something worth keeping." : "Book a free consultation. We'll audit your current presence and show you exactly where the opportunities are."}

{personal ? "Book a Session" : "Book a Consultation"}

Or call: (402) 610-4480

); } function Footer({ onBack }) { return (
NVAR STUDIOS © 2025. Lincoln, Nebraska.
Instagram Email
); } // ============================================ // MAIN APP — STATE ROUTER // ============================================ export default function NVARStudios() { const [view, setView] = useState("gateway"); // "gateway" | "business" | "personal" const handleSelect = (side) => { setView(side); window.scrollTo({ top: 0, behavior: "instant" }); }; return (
{view === "gateway" && } {view === "business" && handleSelect("gateway")} />} {view === "personal" && handleSelect("gateway")} />}
); }
0
Skip to Content
NVARStudios
NVARStudios
NVAR Studios

Lincoln Nebraska's premier commercial photography and brand marketing agency. Helping businesses stand out through strategic imagery.

Photography

  • Commercial
  • Corporate Headshots
  • Product Photography
  • Event Coverage
  • Real Estate

Digital

  • Brand Strategy
  • Web Development
  • SEO Services
  • Social Media
  • Consulting

Company

  • About Us
  • Our Work
  • Blog
  • Contact

Get In Touch

Phone

(402) 610-4480

Email

nvarstudios@gmail.com

Location

Lincoln, NE 68524

Ready to start your project?

Book a free consultation today

Book Consultation

© 2025 NVAR Studios. All rights reserved.

Lincoln, Nebraska

Privacy Policy Terms of Service