746 lines
23 KiB
HTML
746 lines
23 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>my-biz.app — Professional Back-Office for Real Businesses</title>
|
|
<style>
|
|
/* ── RESET & BASE ── */
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
html { scroll-behavior: smooth; font-size: 16px; }
|
|
body {
|
|
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
background: #ffffff;
|
|
color: #0f172a;
|
|
line-height: 1.6;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
a { text-decoration: none; color: inherit; }
|
|
ul { list-style: none; }
|
|
img { display: block; max-width: 100%; }
|
|
|
|
/* ── NAV ── */
|
|
nav {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 2rem;
|
|
height: 60px;
|
|
background: #ffffff;
|
|
border-bottom: 1px solid #e2e8f0;
|
|
}
|
|
.nav-logo {
|
|
font-size: 1.1rem;
|
|
font-weight: 700;
|
|
letter-spacing: -0.02em;
|
|
color: #0f172a;
|
|
}
|
|
.nav-logo span { color: #6366f1; }
|
|
.nav-links {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
}
|
|
.nav-links li a {
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
color: #475569;
|
|
padding: 0.4rem 0.75rem;
|
|
border-radius: 6px;
|
|
transition: color 0.15s, background 0.15s;
|
|
}
|
|
.nav-links li a:hover { color: #0f172a; background: #f1f5f9; }
|
|
.nav-cta {
|
|
background: #6366f1 !important;
|
|
color: #ffffff !important;
|
|
font-weight: 600 !important;
|
|
padding: 0.45rem 1rem !important;
|
|
border-radius: 6px !important;
|
|
box-shadow: 0 1px 4px rgba(99,102,241,0.25) !important;
|
|
transition: background 0.15s, box-shadow 0.15s !important;
|
|
}
|
|
.nav-cta:hover {
|
|
background: #4f46e5 !important;
|
|
box-shadow: 0 4px 12px rgba(99,102,241,0.35) !important;
|
|
}
|
|
|
|
/* ── HERO ── */
|
|
.hero {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 6rem 2rem 5rem;
|
|
text-align: center;
|
|
}
|
|
.hero-eyebrow {
|
|
display: inline-block;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: #6366f1;
|
|
background: #eef2ff;
|
|
border: 1px solid #c7d2fe;
|
|
border-radius: 100px;
|
|
padding: 0.3rem 0.85rem;
|
|
margin-bottom: 1.75rem;
|
|
}
|
|
.hero h1 {
|
|
font-size: clamp(2rem, 4.5vw, 3.25rem);
|
|
font-weight: 800;
|
|
line-height: 1.15;
|
|
letter-spacing: -0.03em;
|
|
color: #0f172a;
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
.hero h1 em {
|
|
font-style: normal;
|
|
color: #6366f1;
|
|
}
|
|
.hero-sub {
|
|
font-size: 1.0625rem;
|
|
color: #475569;
|
|
max-width: 600px;
|
|
margin: 0 auto 0.75rem;
|
|
line-height: 1.75;
|
|
}
|
|
.hero-tagline {
|
|
font-size: 0.9375rem;
|
|
color: #64748b;
|
|
margin-bottom: 2rem;
|
|
font-style: italic;
|
|
}
|
|
.hero-actions {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
gap: 0.75rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.btn-primary {
|
|
display: inline-block;
|
|
background: #6366f1;
|
|
color: #ffffff;
|
|
font-size: 0.9375rem;
|
|
font-weight: 600;
|
|
padding: 0.65rem 1.5rem;
|
|
border-radius: 8px;
|
|
box-shadow: 0 1px 4px rgba(99,102,241,0.3), 0 4px 16px rgba(99,102,241,0.2);
|
|
transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
|
|
}
|
|
.btn-primary:hover {
|
|
background: #4f46e5;
|
|
box-shadow: 0 2px 8px rgba(99,102,241,0.4), 0 6px 20px rgba(99,102,241,0.25);
|
|
transform: translateY(-1px);
|
|
}
|
|
.btn-secondary {
|
|
display: inline-block;
|
|
background: transparent;
|
|
color: #0f172a;
|
|
font-size: 0.9375rem;
|
|
font-weight: 600;
|
|
padding: 0.65rem 1.5rem;
|
|
border-radius: 8px;
|
|
border: 1.5px solid #cbd5e1;
|
|
transition: border-color 0.15s, background 0.15s;
|
|
}
|
|
.btn-secondary:hover { border-color: #94a3b8; background: #f8fafc; }
|
|
.hero-trust {
|
|
font-size: 0.8125rem;
|
|
color: #94a3b8;
|
|
letter-spacing: 0.01em;
|
|
}
|
|
.hero-trust strong { color: #64748b; }
|
|
|
|
/* ── SECTIONS COMMON ── */
|
|
section {
|
|
padding: 5rem 2rem;
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
}
|
|
section + section { border-top: 1px solid #f1f5f9; }
|
|
.section-label {
|
|
display: inline-block;
|
|
font-size: 0.7rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.12em;
|
|
text-transform: uppercase;
|
|
color: #6366f1;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
.section-title {
|
|
font-size: clamp(1.5rem, 3vw, 2.25rem);
|
|
font-weight: 800;
|
|
letter-spacing: -0.025em;
|
|
color: #0f172a;
|
|
margin-bottom: 0.75rem;
|
|
line-height: 1.2;
|
|
}
|
|
.section-sub {
|
|
font-size: 0.9375rem;
|
|
color: #64748b;
|
|
max-width: 580px;
|
|
line-height: 1.75;
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
|
|
/* ── VERTICALS GRID ── */
|
|
.verticals-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
|
|
gap: 1.25rem;
|
|
}
|
|
.vertical-card {
|
|
background: #ffffff;
|
|
border: 2px solid #e2e8f0;
|
|
border-radius: 12px;
|
|
padding: 1.5rem;
|
|
transition: box-shadow 0.2s;
|
|
}
|
|
.vertical-card:hover {
|
|
box-shadow: 0 4px 24px rgba(15,23,42,0.08);
|
|
}
|
|
.vertical-icon { font-size: 1.75rem; display: block; margin-bottom: 0.75rem; }
|
|
.vertical-name {
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
color: #0f172a;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.vertical-desc {
|
|
font-size: 0.875rem;
|
|
color: #64748b;
|
|
line-height: 1.65;
|
|
margin-bottom: 0.875rem;
|
|
}
|
|
.vertical-tag {
|
|
font-size: 0.75rem;
|
|
font-weight: 500;
|
|
color: #6366f1;
|
|
background: #eef2ff;
|
|
border-radius: 6px;
|
|
padding: 0.25rem 0.6rem;
|
|
display: inline-block;
|
|
}
|
|
|
|
/* ── NEWS GRID ── */
|
|
.news-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
|
|
gap: 1.25rem;
|
|
}
|
|
.news-card {
|
|
background: #f8fafc;
|
|
border: 2px solid #e2e8f0;
|
|
border-radius: 12px;
|
|
padding: 1.5rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
transition: box-shadow 0.2s;
|
|
}
|
|
.news-card:hover { box-shadow: 0 4px 24px rgba(15,23,42,0.07); }
|
|
.news-area {
|
|
font-size: 0.7rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
color: #6366f1;
|
|
}
|
|
.news-title {
|
|
font-size: 0.9375rem;
|
|
font-weight: 700;
|
|
color: #0f172a;
|
|
line-height: 1.4;
|
|
}
|
|
.news-teaser {
|
|
font-size: 0.875rem;
|
|
color: #64748b;
|
|
line-height: 1.65;
|
|
flex: 1;
|
|
}
|
|
.news-date {
|
|
font-size: 0.75rem;
|
|
color: #94a3b8;
|
|
font-weight: 500;
|
|
margin-top: 0.25rem;
|
|
}
|
|
|
|
/* ── PRICING GRID ── */
|
|
.pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 1.5rem;
|
|
max-width: 700px;
|
|
}
|
|
.pricing-card {
|
|
background: #ffffff;
|
|
border: 2px solid #e2e8f0;
|
|
border-radius: 14px;
|
|
padding: 2rem;
|
|
position: relative;
|
|
transition: box-shadow 0.2s;
|
|
}
|
|
.pricing-card:hover { box-shadow: 0 4px 24px rgba(15,23,42,0.09); }
|
|
.pricing-card.featured {
|
|
background: linear-gradient(145deg, #6366f1 0%, #4338ca 100%);
|
|
border-color: transparent;
|
|
color: #ffffff;
|
|
}
|
|
.pricing-badge {
|
|
display: inline-block;
|
|
font-size: 0.7rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
background: rgba(255,255,255,0.18);
|
|
color: #ffffff;
|
|
border-radius: 100px;
|
|
padding: 0.2rem 0.6rem;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
.pricing-plan {
|
|
font-size: 0.875rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: #6366f1;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.pricing-card.featured .pricing-plan { color: rgba(255,255,255,0.8); }
|
|
.pricing-price {
|
|
font-size: 2.75rem;
|
|
font-weight: 800;
|
|
letter-spacing: -0.04em;
|
|
color: #0f172a;
|
|
line-height: 1;
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
.pricing-card.featured .pricing-price { color: #ffffff; }
|
|
.pricing-period {
|
|
font-size: 0.8125rem;
|
|
color: #94a3b8;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.65); }
|
|
.pricing-quote {
|
|
font-size: 0.875rem;
|
|
font-style: italic;
|
|
color: #64748b;
|
|
border-left: 3px solid #e2e8f0;
|
|
padding-left: 0.75rem;
|
|
margin-bottom: 1.25rem;
|
|
line-height: 1.5;
|
|
}
|
|
.pricing-card.featured .pricing-quote {
|
|
color: rgba(255,255,255,0.75);
|
|
border-left-color: rgba(255,255,255,0.3);
|
|
}
|
|
.pricing-features {
|
|
font-size: 0.875rem;
|
|
color: #475569;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
.pricing-card.featured .pricing-features { color: rgba(255,255,255,0.85); }
|
|
.pricing-features li::before {
|
|
content: "✓ ";
|
|
color: #6366f1;
|
|
font-weight: 700;
|
|
}
|
|
.pricing-card.featured .pricing-features li::before { color: #a5f3fc; }
|
|
.pricing-cta {
|
|
display: block;
|
|
text-align: center;
|
|
background: #6366f1;
|
|
color: #ffffff;
|
|
font-size: 0.9rem;
|
|
font-weight: 600;
|
|
padding: 0.65rem 1rem;
|
|
border-radius: 8px;
|
|
box-shadow: 0 1px 4px rgba(99,102,241,0.25);
|
|
transition: background 0.15s, box-shadow 0.15s;
|
|
}
|
|
.pricing-cta:hover { background: #4f46e5; box-shadow: 0 4px 12px rgba(99,102,241,0.35); }
|
|
.pricing-card.featured .pricing-cta {
|
|
background: #ffffff;
|
|
color: #4338ca;
|
|
}
|
|
.pricing-card.featured .pricing-cta:hover { background: #f0f4ff; }
|
|
|
|
/* ── CUSTOMIZATION GRID ── */
|
|
.custom-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 1.25rem;
|
|
}
|
|
.custom-card {
|
|
background: #f8fafc;
|
|
border: 2px solid #e2e8f0;
|
|
border-radius: 12px;
|
|
padding: 1.75rem;
|
|
transition: box-shadow 0.2s;
|
|
}
|
|
.custom-card:hover { box-shadow: 0 4px 24px rgba(15,23,42,0.07); }
|
|
.custom-icon { font-size: 1.75rem; display: block; margin-bottom: 0.75rem; }
|
|
.custom-title {
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
color: #0f172a;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.custom-body {
|
|
font-size: 0.875rem;
|
|
color: #64748b;
|
|
line-height: 1.7;
|
|
margin-bottom: 1rem;
|
|
}
|
|
.custom-body strong { color: #0f172a; }
|
|
.custom-link {
|
|
display: inline-block;
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
color: #6366f1;
|
|
transition: color 0.15s;
|
|
}
|
|
.custom-link:hover { color: #4f46e5; text-decoration: underline; }
|
|
.custom-rate {
|
|
display: inline-block;
|
|
font-size: 0.875rem;
|
|
font-weight: 700;
|
|
color: #0f172a;
|
|
background: #eef2ff;
|
|
border: 1px solid #c7d2fe;
|
|
border-radius: 8px;
|
|
padding: 0.35rem 0.75rem;
|
|
}
|
|
|
|
/* ── FOOTER ── */
|
|
footer {
|
|
background: #0f172a;
|
|
color: #94a3b8;
|
|
padding: 3.5rem 2rem 1.5rem;
|
|
}
|
|
.footer-top {
|
|
display: grid;
|
|
grid-template-columns: 2fr repeat(3, 1fr);
|
|
gap: 2rem;
|
|
max-width: 1100px;
|
|
margin: 0 auto 2rem;
|
|
}
|
|
.footer-brand p {
|
|
font-size: 0.875rem;
|
|
line-height: 1.7;
|
|
margin-top: 0.75rem;
|
|
max-width: 280px;
|
|
}
|
|
.footer-logo {
|
|
font-size: 1.1rem;
|
|
font-weight: 700;
|
|
color: #ffffff;
|
|
}
|
|
.footer-logo span { color: #6366f1; }
|
|
.footer-col h4 {
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
color: #ffffff;
|
|
margin-bottom: 0.875rem;
|
|
}
|
|
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
|
|
.footer-col ul li a {
|
|
font-size: 0.875rem;
|
|
color: #94a3b8;
|
|
transition: color 0.15s;
|
|
}
|
|
.footer-col ul li a:hover { color: #ffffff; }
|
|
.footer-bottom {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-top: 1.5rem;
|
|
border-top: 1px solid #1e293b;
|
|
font-size: 0.8125rem;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
}
|
|
.footer-legal { display: flex; gap: 1.25rem; }
|
|
.footer-legal a { color: #64748b; transition: color 0.15s; }
|
|
.footer-legal a:hover { color: #94a3b8; }
|
|
|
|
/* ── RESPONSIVE ── */
|
|
@media (max-width: 768px) {
|
|
nav { padding: 0 1rem; }
|
|
.nav-links { gap: 0; }
|
|
.nav-links li a { padding: 0.35rem 0.5rem; font-size: 0.8rem; }
|
|
section { padding: 3rem 1.25rem; }
|
|
.hero { padding: 3.5rem 1.25rem 3rem; }
|
|
.footer-top { grid-template-columns: 1fr 1fr; }
|
|
}
|
|
@media (max-width: 480px) {
|
|
.nav-links li:not(:last-child) { display: none; }
|
|
.hero h1 { font-size: 1.875rem; }
|
|
.footer-top { grid-template-columns: 1fr; }
|
|
.footer-bottom { flex-direction: column; align-items: flex-start; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- ── NAV ── -->
|
|
<nav>
|
|
<a class="nav-logo" href="#">my-biz<span>.app</span></a>
|
|
<ul class="nav-links">
|
|
<li><a href="#verticals">Verticals</a></li>
|
|
<li><a href="#news">News</a></li>
|
|
<li><a href="#pricing">Pricing</a></li>
|
|
<li><a href="#customization">Customization</a></li>
|
|
<li><a class="nav-cta" href="#pricing">Get Started</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<!-- ── HERO ── -->
|
|
<section class="hero" id="home">
|
|
<div class="hero-eyebrow">✦ One Stop Shop · Built for Real Businesses</div>
|
|
<h1>Running a business is hard.<br><em>Your back-office shouldn't be.</em></h1>
|
|
<p class="hero-sub">
|
|
We eliminate the chaos behind the scenes — invoicing, HR, inventory, CRM, reports —
|
|
all in one place, set up for your exact industry, ready from day one.
|
|
</p>
|
|
<p class="hero-tagline">No duct tape. No spreadsheet nightmares. No expensive surprises.</p>
|
|
<div class="hero-actions">
|
|
<a class="btn-primary" href="#pricing">See Plans & Pricing</a>
|
|
<a class="btn-secondary" href="#verticals">Find Your Vertical</a>
|
|
</div>
|
|
<p class="hero-trust">Powered by <strong>Odoo Community Edition</strong> · Specialists for every industry · From <strong>$214 / year</strong></p>
|
|
</section>
|
|
|
|
<!-- ── VERTICALS ── -->
|
|
<section id="verticals">
|
|
<span class="section-label">Our Verticals</span>
|
|
<h2 class="section-title">We speak your industry's language.</h2>
|
|
<p class="section-sub">
|
|
Every vertical has a dedicated specialist who has lived through your exact challenges.
|
|
No generalists. No guessing. Just experts who get it.
|
|
</p>
|
|
<div class="verticals-grid">
|
|
<div class="vertical-card">
|
|
<span class="vertical-icon">🌍</span>
|
|
<div class="vertical-name">NGO & Non-Profit</div>
|
|
<p class="vertical-desc">
|
|
Grant tracking, donor management, project accounting, and compliance reporting —
|
|
built for organizations that answer to their mission, not just their margin.
|
|
</p>
|
|
<span class="vertical-tag">Donor CRM · Grant Accounting · Impact Reports</span>
|
|
</div>
|
|
<div class="vertical-card">
|
|
<span class="vertical-icon">🚀</span>
|
|
<div class="vertical-name">Startups</div>
|
|
<p class="vertical-desc">
|
|
Move fast without breaking your books. From your first invoice to Series A due diligence,
|
|
we set up systems that grow with you and impress every investor.
|
|
</p>
|
|
<span class="vertical-tag">Invoicing · CRM · Equity-Ready Reporting</span>
|
|
</div>
|
|
<div class="vertical-card">
|
|
<span class="vertical-icon">🏭</span>
|
|
<div class="vertical-name">Manufacturing</div>
|
|
<p class="vertical-desc">
|
|
Bills of materials, production orders, real-time inventory, and quality control —
|
|
everything on the floor finally reflected in your numbers.
|
|
</p>
|
|
<span class="vertical-tag">MRP · Inventory · Purchase · Quality</span>
|
|
</div>
|
|
<div class="vertical-card">
|
|
<span class="vertical-icon">🍽️</span>
|
|
<div class="vertical-name">Restaurants</div>
|
|
<p class="vertical-desc">
|
|
From tableside POS to supplier invoices to staff scheduling —
|
|
keep the kitchen and the books running smoothly, even on your busiest Saturday night.
|
|
</p>
|
|
<span class="vertical-tag">POS · Supplier Mgmt · Payroll · Food Cost</span>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ── NEWS ── -->
|
|
<section id="news">
|
|
<span class="section-label">News from Our Verticals</span>
|
|
<h2 class="section-title">Insights from the front lines.</h2>
|
|
<p class="section-sub">
|
|
Our specialists share what's actually working — no fluff, no vendor noise.
|
|
Real stories from real businesses in your space.
|
|
</p>
|
|
<div class="news-grid">
|
|
<div class="news-card">
|
|
<div class="news-area">NGO</div>
|
|
<div class="news-title">How a regional NGO cut grant reporting time by 70%</div>
|
|
<p class="news-teaser">
|
|
Automating donor reconciliation and project cost allocation freed up 15 hours
|
|
per week that went straight back into their mission.
|
|
</p>
|
|
<span class="news-date">June 2025</span>
|
|
</div>
|
|
<div class="news-card">
|
|
<div class="news-area">Startups</div>
|
|
<div class="news-title">Why investors love clean Odoo data rooms</div>
|
|
<p class="news-teaser">
|
|
Three founders share how a structured back-office gave them an edge
|
|
during due diligence — and closed their rounds faster.
|
|
</p>
|
|
<span class="news-date">May 2025</span>
|
|
</div>
|
|
<div class="news-card">
|
|
<div class="news-area">Manufacturing</div>
|
|
<div class="news-title">Real-time BoM costing saved a mid-size factory $40k</div>
|
|
<p class="news-teaser">
|
|
When raw material prices shifted overnight, live production cost tracking
|
|
allowed this team to reprice quotes before they lost margin.
|
|
</p>
|
|
<span class="news-date">April 2025</span>
|
|
</div>
|
|
<div class="news-card">
|
|
<div class="news-area">Restaurants</div>
|
|
<div class="news-title">Food cost under control: a chef's back-office story</div>
|
|
<p class="news-teaser">
|
|
Linking POS sales data to supplier invoices automatically flagged
|
|
a 12% food cost creep — caught in week one, fixed before it hurt.
|
|
</p>
|
|
<span class="news-date">March 2025</span>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ── PRICING ── -->
|
|
<section id="pricing">
|
|
<span class="section-label">Simple Pricing</span>
|
|
<h2 class="section-title">Transparent. Honest. No surprises.</h2>
|
|
<p class="section-sub">
|
|
Pick the plan that matches where your business is today.
|
|
You can always grow into more — on your timeline, not ours.
|
|
</p>
|
|
<div class="pricing-grid">
|
|
<div class="pricing-card">
|
|
<div class="pricing-plan">Side Hustle</div>
|
|
<div class="pricing-price">$214</div>
|
|
<div class="pricing-period">per year · billed annually</div>
|
|
<p class="pricing-quote">"No big customizations — that is all my business needs."</p>
|
|
<ul class="pricing-features">
|
|
<li>Core back-office modules</li>
|
|
<li>Invoicing & basic accounting</li>
|
|
<li>Up to 3 users</li>
|
|
<li>Standard onboarding</li>
|
|
<li>Community support</li>
|
|
</ul>
|
|
<a class="pricing-cta" href="mailto:hello@my-biz.app?subject=Side Hustle Plan">Get Started</a>
|
|
</div>
|
|
<div class="pricing-card featured">
|
|
<div class="pricing-badge">Most Popular</div>
|
|
<div class="pricing-plan">On the Rise</div>
|
|
<div class="pricing-price">$395</div>
|
|
<div class="pricing-period">per year · billed annually</div>
|
|
<p class="pricing-quote">"I need some modules and professional reports."</p>
|
|
<ul class="pricing-features">
|
|
<li>Everything in Side Hustle</li>
|
|
<li>Industry-specific modules</li>
|
|
<li>Professional report templates</li>
|
|
<li>Up to 10 users</li>
|
|
<li>Priority onboarding</li>
|
|
<li>Email & chat support</li>
|
|
</ul>
|
|
<a class="pricing-cta" href="mailto:hello@my-biz.app?subject=On the Rise Plan">Get Started</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ── CUSTOMIZATION ── -->
|
|
<section id="customization">
|
|
<span class="section-label">Customization</span>
|
|
<h2 class="section-title">Need something more bespoke?</h2>
|
|
<p class="section-sub">
|
|
Because we build on <strong>Odoo Community Edition</strong>, you are never locked in.
|
|
Choose the path that works best for your team and budget.
|
|
</p>
|
|
<div class="custom-grid">
|
|
<div class="custom-card">
|
|
<span class="custom-icon">🌐</span>
|
|
<div class="custom-title">Hire Any Odoo Developer</div>
|
|
<p class="custom-body">
|
|
Since we use Odoo CE, the world's largest open-source ERP community is at your fingertips.
|
|
Thousands of certified freelancers on <strong>Upwork</strong> and <strong>Fiverr</strong>
|
|
can extend, theme, or integrate your instance — no vendor lock-in, ever.
|
|
You own your code. You own your data.
|
|
</p>
|
|
<a class="custom-link" href="https://www.upwork.com/search/profiles/?q=odoo" target="_blank" rel="noopener">Browse Odoo Developers →</a>
|
|
</div>
|
|
<div class="custom-card">
|
|
<span class="custom-icon">🛠️</span>
|
|
<div class="custom-title">Our In-House Team</div>
|
|
<p class="custom-body">
|
|
Prefer to work with specialists who already know your setup inside-out?
|
|
Our senior Odoo developers are on call for custom modules, integrations,
|
|
data migrations, and anything else your business needs to scale.
|
|
Transparent scope, no hidden fees.
|
|
</p>
|
|
<span class="custom-rate">$65 USD / hour</span>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- ── FOOTER ── -->
|
|
<footer>
|
|
<div class="footer-top">
|
|
<div class="footer-brand">
|
|
<a class="footer-logo" href="#">my-biz<span>.app</span></a>
|
|
<p>
|
|
A hassle-free all-in-one back-office built on Odoo Community Edition.
|
|
Specialists for NGOs, Startups, Manufacturing, and Restaurants.
|
|
</p>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Product</h4>
|
|
<ul>
|
|
<li><a href="#verticals">Verticals</a></li>
|
|
<li><a href="#pricing">Pricing</a></li>
|
|
<li><a href="#customization">Customization</a></li>
|
|
<li><a href="#news">News</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Company</h4>
|
|
<ul>
|
|
<li><a href="mailto:hello@my-biz.app">Contact Us</a></li>
|
|
<li><a href="#">About</a></li>
|
|
<li><a href="#">Careers</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer-col">
|
|
<h4>Legal</h4>
|
|
<ul>
|
|
<li><a href="#">Privacy Policy</a></li>
|
|
<li><a href="#">Terms of Service</a></li>
|
|
<li><a href="#">Cookie Policy</a></li>
|
|
<li><a href="#">Imprint</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="footer-bottom">
|
|
<span>© 2025 my-biz.app — All rights reserved.</span>
|
|
<div class="footer-legal">
|
|
<a href="#">Privacy</a>
|
|
<a href="#">Terms</a>
|
|
<a href="#">Imprint</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|