import React, { useState } from ‘react’;
import {
TrendingUp,
Users,
ShieldCheck,
BookOpen,
BarChart3,
Layers,
ChevronRight,
Phone,
Mail,
MapPin,
CheckCircle2,
ArrowRight,
Menu,
X
} from ‘lucide-react’;

const App = () => {
const [isMenuOpen, setIsMenuOpen] = useState(false);
const [activeCategory, setActiveCategory] = useState(‘All’);

const services = [
{
category: “Strategic Advisory”,
icon: ,
items: [
{ title: “Franchise Development Advisory”, desc: “End-to-end franchise system design, structuring, and expansion.”, type: “3–6 Month Engagement”, price: “₱320,000 – ₱520,000” },
{ title: “Founder Transition & Leadership”, desc: “Advisory for owners transitioning from operator to structured leader.”, type: “Monthly / Quarterly / Annual”, price: “₱35,000 – ₱300,000” },
{ title: “Quarterly Business Consultant Review”, desc: “Experience-based strategic performance and growth review.”, type: “Per Engagement”, price: “₱45,000 – ₱75,000” }
]
},
{
category: “Franchise & Expansion”,
icon: ,
items: [
{ title: “Franchise Readiness & Brand Assessment”, desc: “Scalability evaluation and franchise gap analysis.”, type: “One-Time”, price: “₱60,000 – ₱95,000” },
{ title: “Agreement Documentation & Structuring”, desc: “Franchise Agreement, Operations Manual, and implementation guide.”, type: “2-3 Month Project”, price: “₱180,000 – ₱320,000” },
{ title: “Franchise Readiness Workshop”, desc: “Founder preparation prior to franchising expansion.”, type: “2-3 Sessions”, price: “₱35,000 – ₱60,000” },
{ title: “Strategic Expansion & Partnership”, desc: “Partnership program with Org Chart and Subsidiary creations.”, type: “Project Based”, price: “₱495,000 (Monthly Terms)” }
]
},
{
category: “Strategy & Profit”,
icon: ,
items: [
{ title: “Business Diagnostic & Restructuring”, desc: “Deep analysis of revenue model, COGS, and profitability correction.”, type: “One Month (2x Sessions)”, price: “₱50,000 – ₱100,000” },
{ title: “Profit Acceleration Audit”, desc: “Strategy-driven revenue growth and margin optimization.”, type: “Session + Q&A”, price: “₱30,000 – ₱40,000” },
{ title: “Strategic Business Planning”, desc: “3-Day intensive growth roadmap and execution planning.”, type: “Intensive”, price: “₱15,000 – ₱25,000 / Day” }
]
},
{
category: “Systems & Org Dev”,
icon: ,
items: [
{ title: “Operations Manual Development”, desc: “Customized operational systems for scaling or franchising.”, type: “Project”, price: “₱150,000 – ₱380,000+” },
{ title: “HR Systems & Policy Manual”, desc: “HR handbook aligned with Philippine labor compliance.”, type: “Project”, price: “₱95,000 – ₱180,000” }
]
},
{
category: “Corporate & Regulatory”,
icon: ,
items: [
{ title: “Trademark Registration Assistance”, desc: “Guided trademark filing and brand protection support.”, type: “Per Application”, price: “₱13,650 – ₱25,000*” },
{ title: “SEC OPC Registration Assistance”, desc: “One Person Corporation structuring and registration advisory.”, type: “Per Registration”, price: “₱13,000 – ₱18,000*” }
]
},
{
category: “Training & Education”,
icon: ,
items: [
{ title: “Customized In-House Training”, desc: “Private executive training tailored to your company needs.”, type: “Daily Rate”, price: “₱20,000 – ₱30,000” },
{ title: “Franchise Management Training”, desc: “Group online or face-to-face management systems training.”, type: “Per Pax”, price: “₱2,000 – ₱4,000” },
{ title: “Financial Strategy Workshop”, desc: “Public or private sessions for business owners.”, type: “Public / Private”, price: “₱2,000 – ₱60,000” }
]
}
];

const categories = [“All”, …services.map(s => s.category)];

const filteredServices = activeCategory === “All”
? services
: services.filter(s => s.category === activeCategory);

// Custom Color Constants (Tailwind class approximations)
const burgundy = “text-[#4c0519]”;
const bgBurgundy = “bg-[#4c0519]”;
const gold = “text-[#D4AF37]”;
const bgGold = “bg-[#D4AF37]”;
const borderGold = “border-[#D4AF37]”;

return (

{/* Navigation */}

{/* Hero Section */}

{/* Subtle texture background */}

STRATEGY • SYSTEMS • SCALE

Elevate Your Business to World-Class Standards.

Coach Niel Valerio provides high-impact strategic advisory for founders seeking to franchise, optimize profits, and build legacy systems.

Niel Valerio

Strategy & Franchise Consultant

{/* Icon placeholder for professional portrait */}

{/* Service Menu */}

MASTER SERVICE MENU

{/* Category Filter */}

{categories.map((cat) => (

))}

{filteredServices.map((section, idx) => (

{section.icon}

{section.category}

{section.items.map((item, iIdx) => (

{item.title}

{item.desc}

{item.type}

{item.price}

))}

))}

{/* Trust & Authority Section */}

Scale with a Partner,
Not Just a Consultant.

{[
“Data-Driven Revenue Models & COGS Analysis”,
“Compliance with Philippine Labor & Regulatory Standards”,
“End-to-End Implementation Support”,
“Hands-on Founder transition methodologies”
].map((text, i) => (

{text}

))}

“Growth without systems is chaos. My goal is to help Filipino business owners build resilient, profitable, and franchisable organizations that thrive independently.”

— Coach Niel Valerio

{[
{ label: “Manuals Developed”, val: “100+” },
{ label: “Franchise Brands”, val: “50+” },
{ label: “Years Experience”, val: “15+” },
{ label: “Revenue Optimized”, val: “₱10M+” }
].map((stat, i) => (

{stat.val}

{stat.label}

))}

{/* Inquiry Form */}

Let’s Build Your Legacy.

Scale your operations and secure your brand’s future with executive-level strategy.

coachniel@strategy.ph

+63 917 123 4567

Metro Manila, Philippines

e.preventDefault()}>





*By submitting, you agree to our terms of service regarding professional advisory confidentiality.

{/* Footer */}


Coach Niel Valerio

STRATEGIC CONSULTING & BUSINESS ADVISORY

© 2024 Niel Valerio Consulting. Professional strategy for Filipino Entrepreneurs.

Regulatory Notice: SEC and Trademark assistance pricing excludes statutory government filing fees.

);
};

export default App;