Skip to content

Commit d2c36f2

Browse files
committed
fix(landing): restore missing Use Cases section
- Added back the 'Use Cases' section (SaaS, Mobile, Portfolios) that was accidentally removed during the revamp. - The Landing Page now fully includes Hero, How It Works, Features, Use Cases, and FAQ.
1 parent b0ad950 commit d2c36f2

1 file changed

Lines changed: 29 additions & 1 deletion

File tree

frontend/src/pages/LandingPage.jsx

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,8 +570,36 @@ function LandingPage() {
570570
</div>
571571
</div>
572572

573+
{/* --- USE CASES SECTION --- */}
574+
<div id="use-cases" style={{ padding: '8rem 0', background: '#080808', borderTop: '1px solid #111', borderBottom: '1px solid #111' }}>
575+
<div style={{ maxWidth: '1200px', margin: '0 auto', padding: '0 1.5rem' }}>
576+
<div style={{ textAlign: 'center', marginBottom: '5rem' }}>
577+
<h2 className="section-title">What can you build?</h2>
578+
<p className="section-desc">From simple prototypes to complex SaaS applications, urBackend scales with you.</p>
579+
</div>
580+
581+
<div style={{ display: 'grid', gridTemplateColumns: 'repeat(auto-fit, minmax(300px, 1fr))', gap: '2rem' }}>
582+
<div className="use-case-card">
583+
<Layers size={32} color="#3ECF8E" style={{ marginBottom: '1.5rem' }} />
584+
<h3 style={{ fontSize: '1.25rem', fontWeight: 700, marginBottom: '0.5rem' }}>SaaS Applications</h3>
585+
<p style={{ color: '#888', lineHeight: 1.6 }}>Handle multi-user auth, subscription data, and user profiles with ease. Secure rows by user ID automatically.</p>
586+
</div>
587+
<div className="use-case-card">
588+
<Smartphone size={32} color="#409EFF" style={{ marginBottom: '1.5rem' }} />
589+
<h3 style={{ fontSize: '1.25rem', fontWeight: 700, marginBottom: '0.5rem' }}>Mobile Apps</h3>
590+
<p style={{ color: '#888', lineHeight: 1.6 }}>Perfect for React Native or Flutter apps needing a lightweight, JSON-based backend API.</p>
591+
</div>
592+
<div className="use-case-card">
593+
<GlobeIcon size={32} color="#FFBD2E" style={{ marginBottom: '1.5rem' }} />
594+
<h3 style={{ fontSize: '1.25rem', fontWeight: 700, marginBottom: '0.5rem' }}>Portfolios & CMS</h3>
595+
<p style={{ color: '#888', lineHeight: 1.6 }}>Store blog posts, project details, and contact form submissions without setting up a WordPress server.</p>
596+
</div>
597+
</div>
598+
</div>
599+
</div>
600+
573601
{/* --- FAQ SECTION --- */}
574-
<div id="faq" style={{ padding: '8rem 0', background: '#080808', borderTop: '1px solid #111', borderBottom: '1px solid #111' }}>
602+
<div id="faq" style={{ padding: '8rem 0', background: '#050505', borderTop: '1px solid #111' }}>
575603
<div style={{ maxWidth: '800px', margin: '0 auto', padding: '0 1.5rem' }}>
576604
<div style={{ textAlign: 'center', marginBottom: '4rem' }}>
577605
<h2 className="section-title">Frequently Asked Questions</h2>

0 commit comments

Comments
 (0)