+ {[
+ {
+ k: '01',
+ t: 'Fast by default',
+ d: 'Speed is a feature. Everything is realtime.',
+ },
+ {
+ k: '02',
+ t: 'Yours to own',
+ d: 'Your data, your infra, no lock-in.',
+ },
+ {
+ k: '03',
+ t: 'Honest pricing',
+ d: 'No per-seat tax. Scale without surprises.',
+ },
+ ].map((p) => (
+
+
+ {p.k}
+
+
+ {p.t}
+
+
+ {p.d}
+
+
+ ))}
+
+
+
+
+ {/* Accordion — FAQ */}
+
+
+
+ Common questions
+
+
+ Frequently asked.
+
+
+
+
+
+
+
+
+
+ {/* Team */}
+
+
+ {/* Logos */}
+
+
+
+ Trusted by teams everywhere
+
+
+
+
+
+ {/* Quote */}
+
+
+ {/* CTA */}
+
+
+
+ Let's talk.
+
+
+ hello@bolt.new
+
+
+
+
+ );
+}
From 574824ffcd8d79e3a415363fe59ddb65dbb3373a Mon Sep 17 00:00:00 2001
From: Ezra Richard <125721936+ezrarichard@users.noreply.github.com>
Date: Thu, 16 Jul 2026 12:56:10 +0530
Subject: [PATCH 2/9] Update App.tsx
---
src/App.tsx | 1186 +++++++++++----------------------------------------
1 file changed, 256 insertions(+), 930 deletions(-)
diff --git a/src/App.tsx b/src/App.tsx
index f209b6d..a0028f6 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,976 +1,302 @@
-import Deck from './deck/Deck';
-import Slide from './deck/Slide';
-import Build from './deck/Build';
-import Reveal from './deck/Reveal';
-import Bento from './components/Bento';
-import Split from './components/Split';
-import CountUp from './components/CountUp';
-import TiltCard from './components/TiltCard';
-import Marquee from './components/Marquee';
-import VisualDashboard from './components/VisualDashboard';
-import StatGrid from './components/StatGrid';
-import Accordion from './components/Accordion';
-import Comparison from './components/Comparison';
-import Tabs from './components/Tabs';
-import Timeline from './components/Timeline';
-import CodeWindow from './components/CodeWindow';
-import BrowserFrame from './components/BrowserFrame';
-import SpotlightCard from './components/SpotlightCard';
-import { BarChart, LineChart, DonutChart } from './components/Charts';
-import Section from './components/Section';
-import Quote from './components/Quote';
-import Pricing from './components/Pricing';
-import Steps from './components/Steps';
-import Agenda from './components/Agenda';
-import Team from './components/Team';
-import Cover from './components/Cover';
-import BigNumber from './components/BigNumber';
-import Contrast from './components/Contrast';
-import Chat from './components/Chat';
-import Table from './components/Table';
-import Globe from './components/Globe';
-
-/* ══════════════════════════════════════════════════════════════════════
- ⚠️ THROWAWAY DEMO showing every component. DELETE these slides and AUTHOR
- THE USER'S DECK. Each child of is one slide. Add speaker notes with
- notes="…" on any slide (shown in presenter mode — press P).
- ══════════════════════════════════════════════════════════════════════ */
-const panel = (extra = 0.22): React.CSSProperties => ({
- position: 'absolute',
- inset: 0,
- background: `radial-gradient(120% 100% at 30% 20%, color-mix(in srgb, var(--primary) ${
- extra * 100
- }%, transparent), transparent 60%), var(--surface-2)`,
-});
-const card: React.CSSProperties = {
- padding: 22,
- borderRadius: 'var(--radius)',
- background: 'var(--surface)',
- border: '1px solid var(--hair)',
-};
+import {
+ Deck,
+ Cover,
+ Slide,
+ Agenda,
+ Section,
+ Split,
+ Comparison,
+ Steps,
+ Timeline,
+ StatGrid,
+ BigNumber,
+ Quote,
+} from './deck';
+
+import {
+ Pricing,
+ Team,
+ BrowserFrame,
+ Globe,
+ TiltCard,
+ SpotlightCard,
+ Marquee,
+} from './components';
export default function App() {
return (
- {/* Cover */}
+ {/* ==================== SLIDE 1: Hero ==================== */}
Bolt Slides}
- subtitle="A responsive React deck engine. Delete this and build the real one."
- foot="June 2026 · Component demo"
+ kicker="CubicleTech LLP"
+ title="BUILDERS"
+ subtitle="The AI Software Factory"
+ tagline="Build the platform once. Build unlimited software products forever."
+ notes="Strong opening. Pause after the tagline."
/>
- {/* Statement + click-build */}
-
-
- Dashboards are everywhere.{' '}
- Insight isn't.
-
-
-
- Bolt Slides turns raw events into answers — automatically.
-
-
+ {/* ==================== SLIDE 2: Who We Are ==================== */}
+
+
Who We Are
+
+ A 5-member founding team with deep expertise in Project Management, PMO, Agile, Scrum, and Product Delivery.
+
+
+ We are not traditional developers — our strength is understanding business problems and delivering value.
+ Builders allows us to amplify those strengths using AI.
+
+
- {/* Split + code */}
-
- Drop-in simple.
- >
- }
- body="Add it to your app in three lines. No SDK to learn, no schema to define."
- media={
- <>
-
-
-
-
- >
- }
- />
+ {/* ==================== SLIDE 15-26: Products We Can Build ==================== */}
+
+
Products We Can Build
+
From simple websites to complex enterprise systems — all powered by AI.
Custom Development • Websites • Mobile Apps • Annual Maintenance • AI Subscriptions • SaaS • Templates • Consulting • Marketplace
+
+
+
+
5-Year Vision
+
Thousands of projects • Hundreds of products • Multiple SaaS offerings • International customers • Global software company
+
+
+
+
Why We Will Win
+
Business + PMO expertise • AI-powered engineering • Low operational cost • Fast delivery • Scalable platform • Customer-first approach
+
+
+
+
Next 12-Month Execution Plan
+
- {/* Quote */}
-
-
- {/* CTA */}
-
-
-
- Let's talk.
-
-
- hello@bolt.new
-
-
+ {/* ==================== FINAL SLIDE: Call to Action ==================== */}
+
+
"We are not building another software company."
+
We are building a Software Factory.
+
CubicleTech LLP • Builders
);
From 89392a9d8dbeacfe1d3c7c4faebf611021037fe7 Mon Sep 17 00:00:00 2001
From: Ezra Richard <125721936+ezrarichard@users.noreply.github.com>
Date: Thu, 16 Jul 2026 13:00:13 +0530
Subject: [PATCH 3/9] Update App.tsx
---
src/App.tsx | 1186 ++++++++++++++++++++++++++++++++++++++++-----------
1 file changed, 930 insertions(+), 256 deletions(-)
diff --git a/src/App.tsx b/src/App.tsx
index a0028f6..f209b6d 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -1,302 +1,976 @@
-import {
- Deck,
- Cover,
- Slide,
- Agenda,
- Section,
- Split,
- Comparison,
- Steps,
- Timeline,
- StatGrid,
- BigNumber,
- Quote,
-} from './deck';
-
-import {
- Pricing,
- Team,
- BrowserFrame,
- Globe,
- TiltCard,
- SpotlightCard,
- Marquee,
-} from './components';
+import Deck from './deck/Deck';
+import Slide from './deck/Slide';
+import Build from './deck/Build';
+import Reveal from './deck/Reveal';
+import Bento from './components/Bento';
+import Split from './components/Split';
+import CountUp from './components/CountUp';
+import TiltCard from './components/TiltCard';
+import Marquee from './components/Marquee';
+import VisualDashboard from './components/VisualDashboard';
+import StatGrid from './components/StatGrid';
+import Accordion from './components/Accordion';
+import Comparison from './components/Comparison';
+import Tabs from './components/Tabs';
+import Timeline from './components/Timeline';
+import CodeWindow from './components/CodeWindow';
+import BrowserFrame from './components/BrowserFrame';
+import SpotlightCard from './components/SpotlightCard';
+import { BarChart, LineChart, DonutChart } from './components/Charts';
+import Section from './components/Section';
+import Quote from './components/Quote';
+import Pricing from './components/Pricing';
+import Steps from './components/Steps';
+import Agenda from './components/Agenda';
+import Team from './components/Team';
+import Cover from './components/Cover';
+import BigNumber from './components/BigNumber';
+import Contrast from './components/Contrast';
+import Chat from './components/Chat';
+import Table from './components/Table';
+import Globe from './components/Globe';
+
+/* ══════════════════════════════════════════════════════════════════════
+ ⚠️ THROWAWAY DEMO showing every component. DELETE these slides and AUTHOR
+ THE USER'S DECK. Each child of is one slide. Add speaker notes with
+ notes="…" on any slide (shown in presenter mode — press P).
+ ══════════════════════════════════════════════════════════════════════ */
+const panel = (extra = 0.22): React.CSSProperties => ({
+ position: 'absolute',
+ inset: 0,
+ background: `radial-gradient(120% 100% at 30% 20%, color-mix(in srgb, var(--primary) ${
+ extra * 100
+ }%, transparent), transparent 60%), var(--surface-2)`,
+});
+const card: React.CSSProperties = {
+ padding: 22,
+ borderRadius: 'var(--radius)',
+ background: 'var(--surface)',
+ border: '1px solid var(--hair)',
+};
export default function App() {
return (
- {/* ==================== SLIDE 1: Hero ==================== */}
+ {/* Cover */}
Bolt Slides}
+ subtitle="A responsive React deck engine. Delete this and build the real one."
+ foot="June 2026 · Component demo"
/>
- {/* ==================== SLIDE 2: Who We Are ==================== */}
-
-
Who We Are
-
- A 5-member founding team with deep expertise in Project Management, PMO, Agile, Scrum, and Product Delivery.
-
-
- We are not traditional developers — our strength is understanding business problems and delivering value.
- Builders allows us to amplify those strengths using AI.
-
-
+ {/* Split + code */}
+
+ Drop-in simple.
+ >
+ }
+ body="Add it to your app in three lines. No SDK to learn, no schema to define."
+ media={
+ <>
+
+
-
-
-
- Trace any request end-to-end, alert on anomalies, ship with
- confidence.
-
- ),
- },
- {
- label: 'Data',
- content: (
-
-
-
- ),
- },
- {
- label: 'Ops',
- content: (
-
- One source of truth for uptime, cost, and capacity — no
- spreadsheets.
-
- ),
- },
- ]}
/>
-
-
+
+ ))}
+
+ );
+}
- {/* Split + code */}
-
- Drop-in simple.
- >
- }
- body="Add it to your app in three lines. No SDK to learn, no schema to define."
- media={
- <>
-
-
+ {[
+ 'Traditional Company: months, many engineers, high cost',
+ 'Builders AI Company: prompt to coordinated AI engineering team',
+ ].map((x) => (
+
- {[
- 'Traditional Company: months, many engineers, high cost',
- 'Builders AI Company: prompt to coordinated AI engineering team',
- ].map((x) => (
-
+ Five operators. One AI multiplier.>}
+ body="We are not traditional software developers. Our strength is understanding business problems, coordinating complex work, and delivering measurable value."
+ />
+
+
- {/* Rest of your slides using SimpleSlide + other helpers */}
-
+ {/* 4 — Problem statement */}
+
+
+
+
+ Every business needs software. Most cannot afford it.>}
+ body="Demand has expanded far beyond websites. Businesses now require connected systems, automation, analytics, and AI."
+ />
+
+
+
- {/* ... add all other SimpleSlide calls as before ... */}
+ {/* 5 — Vision */}
+
+
+
+ Not another chatbot. An AI software company.>}
+ body="Builders behaves like a complete engineering organization, moving work through specialized roles until a working product is ready."
+ />
+
+
+
+
+
+
+
+
+ {/* 6 — Mission */}
+
+
+ Make software development available to every business.>}
+ body={From a neighbourhood bakery to a multinational company.}
+ align="center"
+ />
+
+
+ {[
+ { icon: 'briefcase' as IconName, title: 'Business intent', body: 'Explain the problem and desired outcome.', tone: colors.blue },
+ { icon: 'brain' as IconName, title: 'AI engineering team', body: 'Specialized roles analyze, build, review, and improve.', tone: colors.violet },
+ { icon: 'rocket' as IconName, title: 'Production-ready app', body: 'Preview, package, continue development, and deploy.', tone: colors.green },
+ ].map((x, i) => (
+ <>
+
+
+
{x.title}
+
{x.body}
+
+ {i < 2 &&
→
}
+ >
+ ))}
+
+
+
+
+ {/* 8 — How Builders works */}
+
+
+
+ From customer need to working product.>}
+ body="A guided, reviewable pipeline replaces disconnected prompts with an engineering process."
+ />
+
+
+
+
+
+
+
- {/* Final Call to Action */}
-
-
+ {/* 9 — AI engineering team */}
+
+
+ Nine AI engineers. One coordinated product team.>} align="center" />
-
-
Call to action
-
“We are not building another software company.”
-
- We are building a Software Factory.
-
+
+
+
+
+
+
+
+
+
+
+
+ {/* 10 — Review engine */}
+
+
+
+ Every role reviews what came before.>}
+ body="Nothing should move forward silently. Each engineer checks the relevant prior work, identifies gaps, and records approval or requested changes."
+ />
+
+
+
+ Better digital access for every citizen.>} body="Portals can simplify service requests, complaints, local administration, and utility operations." />
+
+
+
+
+ {/* 26 — Internal products */}
+
+
+
+ We use the factory to build the factory company.>} body="Internal products become our operating system, demonstrations, reusable modules, and future commercial offerings." />
+
+
+
+
+ {/* 27 — Industries */}
+
+
+ More than 100 industries. One adaptable platform.>} align="center" />
+
+
+ Win trust before winning scale.>}
+ body="Focus on local businesses, clear outcomes, fast delivery, strong testimonials, and repeatable service."
+ />
+
+
+
+
+
₹15K–₹75K
+
Initial project range
+
+
+
10
+
First customers target
+
+
+
+ {['Build portfolio','Collect testimonials','Generate referrals','Create repeat customers','Avoid expensive ERP initially','Stay close to local customers'].map((x, i) => (
+
- Five operators. One AI multiplier.>}
- body="We are not traditional software developers. Our strength is understanding business problems, coordinating complex work, and delivering measurable value."
- />
-
-
- Builders amplifies our existing strengths using AI.
-
Business understanding + disciplined delivery + AI engineering.
-
-
-
-
-
-
-
-
-
- {/* 3 — Why Builders */}
-
-
- Traditional software is heavy. Builders makes it compounding.>} align="center" />
-
-
-
-
-
-
-
- {/* 4 — Problem statement */}
-
-
-
-
- Every business needs software. Most cannot afford it.>}
- body="Demand has expanded far beyond websites. Businesses now require connected systems, automation, analytics, and AI."
- />
-
-
- Not another chatbot. An AI software company.>}
- body="Builders behaves like a complete engineering organization, moving work through specialized roles until a working product is ready."
- />
-
-
-
-
-
-
-
-
- {/* 6 — Mission */}
-
-
- Make software development available to every business.>}
- body={From a neighbourhood bakery to a multinational company.}
- align="center"
- />
-
-
- {[
- { icon: 'briefcase' as IconName, title: 'Business intent', body: 'Explain the problem and desired outcome.', tone: colors.blue },
- { icon: 'brain' as IconName, title: 'AI engineering team', body: 'Specialized roles analyze, build, review, and improve.', tone: colors.violet },
- { icon: 'rocket' as IconName, title: 'Production-ready app', body: 'Preview, package, continue development, and deploy.', tone: colors.green },
- ].map((x, i) => (
- <>
-
-
-
{x.title}
-
{x.body}
-
- {i < 2 &&
→
}
- >
- ))}
-
-
-
-
- {/* 8 — How Builders works */}
-
-
-
- From customer need to working product.>}
- body="A guided, reviewable pipeline replaces disconnected prompts with an engineering process."
- />
-
-
-
-
-
-
-
-
- {/* 9 — AI engineering team */}
-
-
- Nine AI engineers. One coordinated product team.>} align="center" />
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {/* 10 — Review engine */}
-
-
-
- Every role reviews what came before.>}
- body="Nothing should move forward silently. Each engineer checks the relevant prior work, identifies gaps, and records approval or requested changes."
- />
-
-
-
- Better digital access for every citizen.>} body="Portals can simplify service requests, complaints, local administration, and utility operations." />
-
-
-
-
- {/* 26 — Internal products */}
-
-
-
- We use the factory to build the factory company.>} body="Internal products become our operating system, demonstrations, reusable modules, and future commercial offerings." />
-
-
-
-
- {/* 27 — Industries */}
-
-
- More than 100 industries. One adaptable platform.>} align="center" />
-
-
- Win trust before winning scale.>}
- body="Focus on local businesses, clear outcomes, fast delivery, strong testimonials, and repeatable service."
- />
-
-
-
-
-
₹15K–₹75K
-
Initial project range
-
-
-
10
-
First customers target
-
-
-
- {['Build portfolio','Collect testimonials','Generate referrals','Create repeat customers','Avoid expensive ERP initially','Stay close to local customers'].map((x, i) => (
-
+ Five operators. One AI multiplier.>}
+ body="We are not traditional software developers. Our strength is understanding business problems, coordinating complex work, and delivering measurable value."
+ />
+
+
+ Builders amplifies our existing strengths using AI.
+
Business understanding + disciplined delivery + AI engineering.
+
+
+
+
+
+
+
+
+
+ {/* 3 — Why Builders */}
+
+
+ Traditional software is heavy. Builders makes it compounding.>} align="center" />
+
+
+
+
+
+
+
+ {/* 4 — Problem statement */}
+
+
+
+
+ Every business needs software. Most cannot afford it.>}
+ body="Demand has expanded far beyond websites. Businesses now require connected systems, automation, analytics, and AI."
+ />
+
+
+ Not another chatbot. An AI software company.>}
+ body="Builders behaves like a complete engineering organization, moving work through specialized roles until a working product is ready."
+ />
+
+
+
+
+
+
+
+
+ {/* 6 — Mission */}
+
+
+ Make software development available to every business.>}
+ body={From a neighbourhood bakery to a multinational company.}
+ align="center"
+ />
+
+
+ {[
+ { icon: 'briefcase' as IconName, title: 'Business intent', body: 'Explain the problem and desired outcome.', tone: colors.blue },
+ { icon: 'brain' as IconName, title: 'AI engineering team', body: 'Specialized roles analyze, build, review, and improve.', tone: colors.violet },
+ { icon: 'rocket' as IconName, title: 'Production-ready app', body: 'Preview, package, continue development, and deploy.', tone: colors.green },
+ ].map((x, i) => (
+ <>
+
+
+
{x.title}
+
{x.body}
+
+ {i < 2 &&
→
}
+ >
+ ))}
+
+
+
+
+ {/* 8 — How Builders works */}
+
+
+
+ From customer need to working product.>}
+ body="A guided, reviewable pipeline replaces disconnected prompts with an engineering process."
+ />
+
+
+
+
+
+
+
+
+ {/* 9 — AI engineering team */}
+
+
+ Nine AI engineers. One coordinated product team.>} align="center" />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {/* 10 — Review engine */}
+
+
+
+ Every role reviews what came before.>}
+ body="Nothing should move forward silently. Each engineer checks the relevant prior work, identifies gaps, and records approval or requested changes."
+ />
+
+
+
+ Better digital access for every citizen.>} body="Portals can simplify service requests, complaints, local administration, and utility operations." />
+
+
+
+
+ {/* 26 — Internal products */}
+
+
+
+ We use the factory to build the factory company.>} body="Internal products become our operating system, demonstrations, reusable modules, and future commercial offerings." />
+
+
+
+
+ {/* 27 — Industries */}
+
+
+ More than 100 industries. One adaptable platform.>} align="center" />
+
+
+ Win trust before winning scale.>}
+ body="Focus on local businesses, clear outcomes, fast delivery, strong testimonials, and repeatable service."
+ />
+
+
+
+
+
₹15K–₹75K
+
Initial project range
+
+
+
10
+
First customers target
+
+
+
+ {['Build portfolio','Collect testimonials','Generate referrals','Create repeat customers','Avoid expensive ERP initially','Stay close to local customers'].map((x, i) => (
+