Giant Peach is your creative and technology partner. We help businesses build their brand,
streamline operations, and grow — through creative services, custom software, and proprietary products.
);
}
/* ============== ABOUT ============== */
function About() {
return (
About us · 01
One partner for brand, software, and growth.
We're a creative and technology partner with a simple thesis: modern businesses
need both sharp creative and smart software to grow. So we deliver both — from
ongoing creative execution to custom platforms and our own products.
/01Ongoing creative that keeps your brand consistent and moving.
/02Custom websites, internal systems, and mobile apps built to fit.
/03Proprietary products that solve real operational challenges.
/04One long-term partner in Manila, not a dozen scattered vendors.
Brand
Software
Growth
10+
years of marketing, technology, account & project management expertise across F&B, fintech, design and tech
);
}
/* ============== CREATIVE SUBSCRIPTION (SERVICES) ============== */
const pad2 = (n) => String(n).padStart(2, '0');
const SERVICES = [
{ icon: 'target', name: 'Brand strategy', desc: 'Positioning, messaging, content pillars, campaign planning and a marketing roadmap so every creative effort supports your business goals.' },
{ icon: 'chat', name: 'Social media management', desc: 'Strategy, content calendars, publishing, boosting, community management and performance reporting.' },
{ icon: 'image', name: 'Social media content', desc: 'Static posts, carousels, GIFs, reels and short-form videos designed to stop the scroll and strengthen your brand.' },
{ icon: 'pen', name: 'Copywriting', desc: 'Headlines, captions, scripts, blogs, website copy and long-form content written in your brand voice.' },
{ icon: 'play', name: 'Video animation', desc: 'Motion graphics, animated explainers, product showcases and campaign videos.' },
{ icon: 'layout', name: 'Marketing collateral', desc: 'Brochures, presentations, posters, banners, menus, sales decks and event materials for print and digital.' }];
function Services() {
const [active, setActive] = useState(0);
return (
Creative Subscription · 02
Consistent creative, month after month.
Ongoing creative support through flexible monthly subscriptions for businesses that need consistent marketing and design execution.
{SERVICES.map((s, i) =>
setActive(i)}>
{pad2(i + 1)} / {pad2(SERVICES.length)}
{s.name}
{s.desc}
)}
And more — just tell us what help you need. Start a conversation →
);
}
/* ============== TECHNOLOGY SERVICES (section 03) ============== */
const CUSTOM_PROJECTS = [
{ icon: 'grid', name: 'Web landing page design & development', desc: 'High-converting, responsive websites and landing pages designed and developed to showcase your brand, generate leads, and drive business growth.' },
{ icon: 'layout', name: 'Internal web application development', desc: 'Custom business systems built to streamline operations, automate workflows and improve efficiency.', tags: ['CRM', 'HR', 'Payroll', 'Booking', 'Inventory', 'Customer portals', 'Dashboards'] },
{ icon: 'rocket', name: 'Mobile app development', desc: 'Custom iOS and Android applications built to improve customer experiences and support business growth.' },
{ icon: 'target', name: 'Interior & 3D design', desc: 'Concept development, space planning, and realistic 3D visualizations for retail, restaurants, kiosks, commercial spaces, and branded environments.' }];
function CustomProjects() {
const [active, setActive] = useState(0);
return (
Technology services · 03
Technology, built to launch.
Custom creative and technology solutions designed to solve business challenges and support long-term growth.
{CUSTOM_PROJECTS.map((s, i) =>
setActive(i)}>
{pad2(i + 1)} / {pad2(CUSTOM_PROJECTS.length)}
{s.name}
{s.desc}
{s.tags &&
{s.tags.map((t) => {t})}
}
)}
Have a project in mind? Let's build something together.
Request a proposal
);
}
/* ============== PRODUCTS (proprietary SaaS catalog) ============== */
/* NOTE: draft feature/benefit copy for review. Dedicated /products/
landing pages are deferred — cards currently link to the live apps. */
const PRODUCTS = [
{
key: 'content-studio',
name: 'Content Studio',
headline: 'Turning Content Plans into Published Results.',
desc: 'A modern content planning platform that helps agencies, marketing teams and brands streamline their entire content workflow — from campaign planning and editorial calendars to approvals, production tracking and delivery.',
features: ['Campaign planning & editorial calendars', 'Approval workflows & version control', 'Production & task tracking', 'Centralized content library & delivery'],
app: 'https://cstudio.giantpeachglobal.com',
ctas: [
{ label: 'Learn more', href: 'https://cstudio.giantpeachglobal.com', primary: true }] },
{
key: 'lasi',
name: 'LASI',
sub: 'Lease Administration for Smart Investments',
headline: 'Smart Property Management for Modern Lessors.',
desc: 'An intelligent property and lease management platform for property owners, landlords and real estate investors. Manage properties, tenants, lease agreements, payments, renewals and documents from one centralized dashboard.',
features: ['Property, tenant & lease management', 'Payments, renewals & reminders', 'Document storage & portfolio dashboard', 'Real-time visibility across your portfolio'],
app: 'https://lasi.giantpeachglobal.com',
ctas: [
{ label: 'Learn more', href: 'https://lasi.giantpeachglobal.com', primary: true }] }];
function ProductCard({ p }) {
return (