Landing page
import React, { useState, useEffect, useRef } from 'react'; import { Camera, PenTool, Truck, Star, ChevronDown, ChevronUp, ShieldCheck, Smartphone, Layers, ArrowRight } from 'lucide-react'; // --- Custom Hooks & Effect Components --- // 1. Scroll Reveal Hook const useInView = (options) => { const ref = useRef(null); const [isInView, setIsInView] = useState(false); useEffect(() => { const observer = new IntersectionObserver(([entry]) => { if (entry.isIntersecting) { setIsInView(true); observer.unobserve(entry.target); // Only animate once } }, { threshold: 0.1, ...options }); const currentRef = ref.current; if (currentRef) observer.observe(currentRef); return () => { if (currentRef) observer.unobserve(currentRef); }; }, [options]); return [ref, isInView]; }; // 2. FadeIn Wrapper Component const FadeIn = ({ children, delay = 0, direction = 'up', className = '' }) => { const [ref, isInView] = useInView(); const getDirectionClasses = () => { switch(direction) { case 'up': return 'translate-y-10'; case 'left': return '-translate-x-10'; case 'right': return 'translate-x-10'; default: return 'translate-y-10'; } }; return (
); }; // --- Main App Component --- const App = () => { return (
Your Machine.
Immortalized.
Turn your daily driver, track weapon, or dream build into museum-grade, bespoke acrylic art. Engineered for the enthusiast, crafted for your wall.
Recognized by Purists. Loved by Drivers.
The UPURU Commission Process
Three steps. Zero friction. Absolute perfection.
Gallery Aesthetics.
Garage DNA.
Forget standard paper posters. UPURU Wall Art is reverse-printed on ultra-clear, high-gloss acrylic. This gives your vehicle unmatched depth, vibrant color saturation, and a sleek, frameless, floating effect on your wall.
Pocket-Sized
Prestige.
Carry your passion wherever you go. The UPURU custom phone case takes the exact design from your wall art and scales it down to a precision-fit, impact-resistant shield for your device.
The Ultimate Gift for the Obsessed.
Struggling to find a gift for someone whose life revolves around their garage? Give them something as unique as their build. Whether it's their first project car or their ultimate dream spec, an UPURU commission is a gift they will never outgrow.
The Pit Stop (FAQ)
); }; // Sub-components const Standoff = ({ top, left }) => (
); const ReviewCard = ({ quote, author, car }) => (
"{quote}"
{author}
{car}
); const ProcessStep = ({ icon, number, title, desc }) => (
{title}
{desc}
); const FeatureItem = ({ icon, title, desc }) => (
-
{icon ? icon :}
{title}
{desc}
); const AccordionItem = ({ question, answer }) => { const [isOpen, setIsOpen] = useState(false); return (
); }; export default App;