feat: multi-page routing + AI-Powered Meta Ads service
- Hash router (#/services, #/stack, #/agents, #/timeline, #/contact) - New pages.jsx: ServicesPage, StackPage, AgentsPage, TimelinePage, ContactPage - AI-Powered Meta Ads service added (Meta MCP, 5x ROAS, 15-min bid optimization) - Nav links updated to hash routes with active-state highlighting - index.html loads pages.jsx before app.jsx Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+441
@@ -0,0 +1,441 @@
|
||||
// Individual page views for hash router
|
||||
|
||||
const COLOR_MAP = {
|
||||
violet: { bg: "rgba(124,92,255,0.08)", border: "rgba(124,92,255,0.22)", text: "#a78bfa" },
|
||||
cyan: { bg: "rgba(0,212,255,0.07)", border: "rgba(0,212,255,0.20)", text: "#67e8f9" },
|
||||
green: { bg: "rgba(34,197,94,0.07)", border: "rgba(34,197,94,0.20)", text: "#86efac" },
|
||||
amber: { bg: "rgba(251,191,36,0.08)", border: "rgba(251,191,36,0.22)", text: "#fde68a" },
|
||||
rose: { bg: "rgba(244,63,94,0.08)", border: "rgba(244,63,94,0.22)", text: "#fda4af" },
|
||||
};
|
||||
|
||||
const PageHero = ({ eyebrow, title, sub, children }) => (
|
||||
<section style={{ padding: "140px 0 80px", borderBottom: "1px solid var(--line)" }}>
|
||||
<div className="container">
|
||||
<a href="#" style={{
|
||||
display: "inline-flex", alignItems: "center", gap: 6,
|
||||
fontSize: 12.5, color: "var(--text-faint)",
|
||||
marginBottom: 40, textDecoration: "none",
|
||||
fontFamily: "var(--font-mono)",
|
||||
transition: "color 0.15s",
|
||||
}}
|
||||
onMouseEnter={e => e.currentTarget.style.color = "var(--text-dim)"}
|
||||
onMouseLeave={e => e.currentTarget.style.color = "var(--text-faint)"}
|
||||
>← Home</a>
|
||||
<span className="eyebrow" style={{ marginBottom: 20, display: "flex" }}>{eyebrow}</span>
|
||||
<h1 style={{
|
||||
fontSize: "clamp(36px, 5.5vw, 68px)",
|
||||
fontWeight: 500, letterSpacing: "-0.03em",
|
||||
lineHeight: 1.04, margin: "0 0 20px",
|
||||
}}>{title}</h1>
|
||||
{sub && <p style={{ fontSize: 18, color: "var(--text-dim)", maxWidth: 600, margin: 0, lineHeight: 1.6 }}>{sub}</p>}
|
||||
{children}
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
|
||||
// ─── SERVICES PAGE ────────────────────────────────────────────────────────────
|
||||
|
||||
const ServicesPage = ({ lang }) => {
|
||||
const D = PORTFOLIO_DATA;
|
||||
const [active, setActive] = React.useState(null);
|
||||
|
||||
return (
|
||||
<main>
|
||||
<PageHero
|
||||
eyebrow="What we build"
|
||||
title={<>Services that <span style={{ fontFamily: "var(--font-serif)", fontStyle: "italic", fontWeight: 400 }}>ship</span> — not decks that pitch</>}
|
||||
sub="Every engagement ends with production code. No retainers for decks. No sprints for prototypes that never deploy."
|
||||
/>
|
||||
|
||||
<section style={{ padding: "80px 0 120px" }}>
|
||||
<div className="container">
|
||||
<div style={{ display: "grid", gap: 24 }}>
|
||||
{D.services.map((svc, i) => {
|
||||
const c = COLOR_MAP[svc.color] || COLOR_MAP.violet;
|
||||
const isOpen = active === svc.id;
|
||||
const isNew = !!svc.badge;
|
||||
return (
|
||||
<div
|
||||
key={svc.id}
|
||||
className="reveal"
|
||||
style={{
|
||||
background: isOpen ? c.bg : "var(--bg-card)",
|
||||
border: `1px solid ${isOpen ? c.border : "var(--line)"}`,
|
||||
borderRadius: "var(--radius)",
|
||||
overflow: "hidden",
|
||||
transition: "all 0.25s ease",
|
||||
cursor: "pointer",
|
||||
}}
|
||||
onClick={() => setActive(isOpen ? null : svc.id)}
|
||||
>
|
||||
{/* Header row */}
|
||||
<div style={{ padding: "28px 32px", display: "flex", alignItems: "center", justifyContent: "space-between", gap: 20 }}>
|
||||
<div style={{ display: "flex", alignItems: "center", gap: 20, flex: 1, minWidth: 0 }}>
|
||||
<span style={{
|
||||
fontFamily: "var(--font-mono)", fontSize: 11,
|
||||
color: "var(--text-faint)", flexShrink: 0,
|
||||
}}>0{i + 1}</span>
|
||||
<div style={{ minWidth: 0 }}>
|
||||
<div style={{ display: "flex", alignItems: "center", gap: 10, flexWrap: "wrap" }}>
|
||||
<h3 style={{ margin: 0, fontSize: 18, fontWeight: 500, letterSpacing: "-0.01em" }}>
|
||||
{lang === "bn" && svc.nameBn ? svc.nameBn : svc.name}
|
||||
</h3>
|
||||
{isNew && (
|
||||
<span style={{
|
||||
fontSize: 10.5, fontFamily: "var(--font-mono)",
|
||||
padding: "2px 8px", borderRadius: 999,
|
||||
background: c.bg, border: `1px solid ${c.border}`,
|
||||
color: c.text, fontWeight: 600,
|
||||
}}>{svc.badge}</span>
|
||||
)}
|
||||
</div>
|
||||
<span style={{
|
||||
fontSize: 11, fontFamily: "var(--font-mono)",
|
||||
color: "var(--text-faint)", marginTop: 4, display: "block",
|
||||
}}>{svc.kind}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div style={{ display: "flex", alignItems: "center", gap: 24, flexShrink: 0 }}>
|
||||
<div style={{ textAlign: "right" }}>
|
||||
<div style={{ fontSize: 22, fontWeight: 600, color: c.text }}>{svc.impact.primary}</div>
|
||||
<div style={{ fontSize: 11, color: "var(--text-faint)", fontFamily: "var(--font-mono)" }}>{svc.impact.secondary}</div>
|
||||
</div>
|
||||
<div style={{
|
||||
width: 28, height: 28, borderRadius: 8,
|
||||
border: "1px solid var(--line)",
|
||||
display: "grid", placeItems: "center",
|
||||
color: "var(--text-faint)", fontSize: 16,
|
||||
transform: isOpen ? "rotate(45deg)" : "none",
|
||||
transition: "transform 0.2s",
|
||||
flexShrink: 0,
|
||||
}}>+</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Expanded content */}
|
||||
{isOpen && (
|
||||
<div style={{ padding: "0 32px 32px", borderTop: `1px solid ${c.border}` }}>
|
||||
<div style={{ paddingTop: 24, display: "grid", gridTemplateColumns: svc.highlights ? "1.2fr 1fr" : "1fr 1fr", gap: 32 }} className="svc-detail-grid">
|
||||
<div>
|
||||
<p style={{ margin: "0 0 24px", fontSize: 15.5, lineHeight: 1.65, color: "var(--text-dim)" }}>{svc.description}</p>
|
||||
{svc.highlights && (
|
||||
<ul style={{ margin: 0, padding: 0, listStyle: "none", display: "grid", gap: 10 }}>
|
||||
{svc.highlights.map((h, hi) => (
|
||||
<li key={hi} style={{ display: "flex", gap: 12, fontSize: 14, color: "var(--text)" }}>
|
||||
<span style={{ color: c.text, flexShrink: 0, marginTop: 1 }}>✓</span>
|
||||
{h}
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
)}
|
||||
</div>
|
||||
<div style={{ display: "flex", flexDirection: "column", gap: 20 }}>
|
||||
<div>
|
||||
<div style={{ fontSize: 11, fontFamily: "var(--font-mono)", color: "var(--text-faint)", marginBottom: 10, textTransform: "uppercase", letterSpacing: "0.1em" }}>Stack</div>
|
||||
<div style={{ display: "flex", flexWrap: "wrap", gap: 6 }}>
|
||||
{svc.stack.map(s => (
|
||||
<span key={s} style={{
|
||||
fontSize: 12, padding: "4px 10px", borderRadius: 6,
|
||||
background: c.bg, border: `1px solid ${c.border}`,
|
||||
color: c.text, fontFamily: "var(--font-mono)",
|
||||
}}>{s}</span>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
<a
|
||||
href="mailto:hello@auraajenticai.cloud?subject=Enquiry: {svc.name}"
|
||||
onClick={e => e.stopPropagation()}
|
||||
style={{
|
||||
alignSelf: "flex-start",
|
||||
padding: "10px 20px",
|
||||
background: "var(--text)", color: "var(--bg)",
|
||||
borderRadius: 9, fontSize: 13.5, fontWeight: 500,
|
||||
textDecoration: "none", marginTop: "auto",
|
||||
}}
|
||||
>Get a Quote →</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
})}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<style>{`
|
||||
@media (max-width: 640px) {
|
||||
.svc-detail-grid { grid-template-columns: 1fr !important; }
|
||||
}
|
||||
`}</style>
|
||||
</main>
|
||||
);
|
||||
};
|
||||
|
||||
// ─── STACK PAGE ──────────────────────────────────────────────────────────────
|
||||
|
||||
const StackPage = () => {
|
||||
const D = PORTFOLIO_DATA;
|
||||
const cats = Object.entries(D.stack);
|
||||
const [activeTab, setActiveTab] = React.useState(cats[0][0]);
|
||||
const skills = cats.find(([k]) => k === activeTab)?.[1] || [];
|
||||
|
||||
return (
|
||||
<main>
|
||||
<PageHero
|
||||
eyebrow="Technology"
|
||||
title={<>Tools we wield <span style={{ fontFamily: "var(--font-serif)", fontStyle: "italic", fontWeight: 400 }}>daily</span></>}
|
||||
sub="Production-tested across 40+ agents, 12 enterprise clients, and 7 years of shipping real systems."
|
||||
/>
|
||||
<section style={{ padding: "80px 0 120px" }}>
|
||||
<div className="container">
|
||||
{/* Tab bar */}
|
||||
<div style={{ display: "flex", gap: 4, flexWrap: "wrap", marginBottom: 48, borderBottom: "1px solid var(--line)", paddingBottom: 0 }}>
|
||||
{cats.map(([cat]) => (
|
||||
<button key={cat} onClick={() => setActiveTab(cat)} style={{
|
||||
padding: "10px 18px", background: "transparent", border: "none",
|
||||
borderBottom: activeTab === cat ? "2px solid var(--accent)" : "2px solid transparent",
|
||||
color: activeTab === cat ? "var(--text)" : "var(--text-dim)",
|
||||
fontSize: 13.5, fontWeight: activeTab === cat ? 500 : 400,
|
||||
cursor: "pointer", marginBottom: -1, transition: "all 0.15s",
|
||||
fontFamily: "var(--font-sans)",
|
||||
}}>{cat}</button>
|
||||
))}
|
||||
</div>
|
||||
|
||||
{/* Skill bars */}
|
||||
<div style={{ display: "grid", gap: 20, maxWidth: 720 }}>
|
||||
{skills.map((s, i) => (
|
||||
<div key={s.name} className="reveal" style={{ animationDelay: `${i * 60}ms` }}>
|
||||
<div style={{ display: "flex", justifyContent: "space-between", marginBottom: 8 }}>
|
||||
<span style={{ fontSize: 14.5, fontWeight: 500 }}>{s.name}</span>
|
||||
<span style={{ fontFamily: "var(--font-mono)", fontSize: 12, color: "var(--text-faint)" }}>{s.level}%</span>
|
||||
</div>
|
||||
<div style={{ height: 6, background: "var(--line)", borderRadius: 99, overflow: "hidden" }}>
|
||||
<div style={{
|
||||
height: "100%", width: `${s.level}%`,
|
||||
background: "linear-gradient(90deg, var(--accent), var(--accent-2))",
|
||||
borderRadius: 99,
|
||||
transition: "width 0.8s cubic-bezier(0.2,0.8,0.2,1)",
|
||||
}} />
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
);
|
||||
};
|
||||
|
||||
// ─── AGENTS PAGE ─────────────────────────────────────────────────────────────
|
||||
|
||||
const AgentsPage = () => (
|
||||
<main>
|
||||
<PageHero
|
||||
eyebrow="AI Agents"
|
||||
title={<>Agents that act — not <span style={{ fontFamily: "var(--font-serif)", fontStyle: "italic", fontWeight: 400 }}>chat</span></>}
|
||||
sub="Every agent we ship has tool access, memory, retry logic, and an audit trail. Live demo below."
|
||||
/>
|
||||
<section style={{ padding: "60px 0 120px" }}>
|
||||
<div className="container">
|
||||
<window.AgentShowcase />
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
);
|
||||
|
||||
// ─── TIMELINE PAGE ───────────────────────────────────────────────────────────
|
||||
|
||||
const TimelinePage = () => {
|
||||
const D = PORTFOLIO_DATA;
|
||||
return (
|
||||
<main>
|
||||
<PageHero
|
||||
eyebrow="Experience"
|
||||
title="Seven years of shipping"
|
||||
sub="From agency work to fintech infrastructure to founding Aura — the full arc."
|
||||
/>
|
||||
<section style={{ padding: "80px 0 120px" }}>
|
||||
<div className="container">
|
||||
<div style={{ maxWidth: 720, display: "grid", gap: 0 }}>
|
||||
{D.experience.map((exp, i) => (
|
||||
<div key={i} className="reveal" style={{
|
||||
display: "grid", gridTemplateColumns: "160px 1fr",
|
||||
gap: "0 32px", paddingBottom: 40,
|
||||
borderLeft: "1px solid var(--line)",
|
||||
paddingLeft: 32, marginLeft: 160, position: "relative",
|
||||
}}>
|
||||
<div style={{
|
||||
position: "absolute", left: -5, top: 8,
|
||||
width: 9, height: 9, borderRadius: "50%",
|
||||
background: "var(--accent)",
|
||||
boxShadow: "0 0 12px var(--accent-glow)",
|
||||
}} />
|
||||
<div style={{
|
||||
position: "absolute", left: -160, top: 6,
|
||||
fontFamily: "var(--font-mono)", fontSize: 11,
|
||||
color: "var(--text-faint)", whiteSpace: "nowrap",
|
||||
textAlign: "right", paddingRight: 28,
|
||||
}}>{exp.year}</div>
|
||||
<div style={{ paddingTop: 0 }}>
|
||||
<div style={{ display: "flex", alignItems: "center", gap: 10, marginBottom: 4, flexWrap: "wrap" }}>
|
||||
<span style={{ fontSize: 15.5, fontWeight: 500 }}>{exp.role}</span>
|
||||
<span style={{
|
||||
fontSize: 10.5, padding: "2px 7px", borderRadius: 999,
|
||||
background: "var(--bg-elev)", border: "1px solid var(--line)",
|
||||
color: "var(--text-faint)", fontFamily: "var(--font-mono)",
|
||||
}}>{exp.kind}</span>
|
||||
</div>
|
||||
<div style={{ fontSize: 13, color: "var(--accent)", marginBottom: 10, fontWeight: 500 }}>{exp.company}</div>
|
||||
<p style={{ margin: 0, fontSize: 14, lineHeight: 1.6, color: "var(--text-dim)" }}>{exp.detail}</p>
|
||||
</div>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
);
|
||||
};
|
||||
|
||||
// ─── CONTACT PAGE ─────────────────────────────────────────────────────────────
|
||||
|
||||
const ContactPage = ({ lang }) => {
|
||||
const [sent, setSent] = React.useState(false);
|
||||
const [form, setForm] = React.useState({ name: "", email: "", service: "", message: "" });
|
||||
const [loading, setLoading] = React.useState(false);
|
||||
|
||||
const handleSubmit = async (e) => {
|
||||
e.preventDefault();
|
||||
setLoading(true);
|
||||
await new Promise(r => setTimeout(r, 1000));
|
||||
setSent(true);
|
||||
setLoading(false);
|
||||
};
|
||||
|
||||
const services = PORTFOLIO_DATA.services.map(s => s.name);
|
||||
|
||||
return (
|
||||
<main>
|
||||
<PageHero
|
||||
eyebrow="Contact"
|
||||
title="Let's build something real"
|
||||
sub="Describe what you need — we'll respond within 24 hours with a scoped proposal."
|
||||
/>
|
||||
<section style={{ padding: "80px 0 120px" }}>
|
||||
<div className="container">
|
||||
<div style={{ display: "grid", gridTemplateColumns: "1fr 1.3fr", gap: 80, alignItems: "start" }} className="contact-grid">
|
||||
{/* Left info */}
|
||||
<div>
|
||||
<div style={{ display: "grid", gap: 24 }}>
|
||||
{[
|
||||
{ label: "Email", value: "hello@auraajenticai.cloud", href: "mailto:hello@auraajenticai.cloud" },
|
||||
{ label: "Response time", value: "< 24 hours" },
|
||||
{ label: "Location", value: "Dhaka, Bangladesh · Remote" },
|
||||
{ label: "Availability", value: "Open to new projects" },
|
||||
].map(item => (
|
||||
<div key={item.label} style={{
|
||||
padding: "20px 24px", borderRadius: "var(--radius)",
|
||||
border: "1px solid var(--line)", background: "var(--bg-card)",
|
||||
}}>
|
||||
<div style={{ fontSize: 11, fontFamily: "var(--font-mono)", color: "var(--text-faint)", marginBottom: 6, textTransform: "uppercase", letterSpacing: "0.1em" }}>{item.label}</div>
|
||||
{item.href
|
||||
? <a href={item.href} style={{ fontSize: 15, color: "var(--accent)", textDecoration: "none" }}>{item.value}</a>
|
||||
: <div style={{ fontSize: 15, fontWeight: 500 }}>{item.value}</div>
|
||||
}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Contact form */}
|
||||
{sent ? (
|
||||
<div style={{
|
||||
padding: 48, borderRadius: "var(--radius)", border: "1px solid var(--line)",
|
||||
background: "var(--bg-card)", textAlign: "center",
|
||||
}}>
|
||||
<div style={{ fontSize: 40, marginBottom: 16 }}>✓</div>
|
||||
<h3 style={{ margin: "0 0 8px", fontWeight: 500 }}>Message sent!</h3>
|
||||
<p style={{ color: "var(--text-dim)", margin: 0 }}>We'll get back to you within 24 hours.</p>
|
||||
</div>
|
||||
) : (
|
||||
<form onSubmit={handleSubmit} style={{ display: "grid", gap: 16 }}>
|
||||
{[
|
||||
{ key: "name", label: "Your name", type: "text", placeholder: "Jane Smith" },
|
||||
{ key: "email", label: "Email", type: "email", placeholder: "jane@company.com" },
|
||||
].map(f => (
|
||||
<div key={f.key}>
|
||||
<label style={{ display: "block", fontSize: 12.5, color: "var(--text-faint)", marginBottom: 6, fontFamily: "var(--font-mono)" }}>{f.label}</label>
|
||||
<input
|
||||
type={f.type} required placeholder={f.placeholder}
|
||||
value={form[f.key]}
|
||||
onChange={e => setForm(p => ({ ...p, [f.key]: e.target.value }))}
|
||||
style={{
|
||||
width: "100%", padding: "11px 14px",
|
||||
background: "var(--bg-elev)", border: "1px solid var(--line)",
|
||||
borderRadius: 9, color: "var(--text)", fontSize: 14.5,
|
||||
fontFamily: "var(--font-sans)", outline: "none",
|
||||
boxSizing: "border-box",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
))}
|
||||
<div>
|
||||
<label style={{ display: "block", fontSize: 12.5, color: "var(--text-faint)", marginBottom: 6, fontFamily: "var(--font-mono)" }}>Service interested in</label>
|
||||
<select
|
||||
value={form.service}
|
||||
onChange={e => setForm(p => ({ ...p, service: e.target.value }))}
|
||||
style={{
|
||||
width: "100%", padding: "11px 14px",
|
||||
background: "var(--bg-elev)", border: "1px solid var(--line)",
|
||||
borderRadius: 9, color: form.service ? "var(--text)" : "var(--text-faint)",
|
||||
fontSize: 14.5, fontFamily: "var(--font-sans)", outline: "none",
|
||||
boxSizing: "border-box",
|
||||
}}
|
||||
>
|
||||
<option value="">Select a service…</option>
|
||||
{services.map(s => <option key={s} value={s}>{s}</option>)}
|
||||
</select>
|
||||
</div>
|
||||
<div>
|
||||
<label style={{ display: "block", fontSize: 12.5, color: "var(--text-faint)", marginBottom: 6, fontFamily: "var(--font-mono)" }}>What do you need?</label>
|
||||
<textarea
|
||||
required rows={5} placeholder="Describe your project or goal…"
|
||||
value={form.message}
|
||||
onChange={e => setForm(p => ({ ...p, message: e.target.value }))}
|
||||
style={{
|
||||
width: "100%", padding: "11px 14px",
|
||||
background: "var(--bg-elev)", border: "1px solid var(--line)",
|
||||
borderRadius: 9, color: "var(--text)", fontSize: 14.5,
|
||||
fontFamily: "var(--font-sans)", outline: "none", resize: "vertical",
|
||||
boxSizing: "border-box",
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
<button type="submit" disabled={loading} style={{
|
||||
padding: "13px 28px", background: "var(--text)", color: "var(--bg)",
|
||||
border: "none", borderRadius: 10, fontSize: 14.5, fontWeight: 500,
|
||||
cursor: loading ? "wait" : "pointer", opacity: loading ? 0.7 : 1,
|
||||
}}>
|
||||
{loading ? "Sending…" : "Send Message →"}
|
||||
</button>
|
||||
</form>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<style>{`
|
||||
@media (max-width: 720px) {
|
||||
.contact-grid { grid-template-columns: 1fr !important; }
|
||||
}
|
||||
`}</style>
|
||||
</main>
|
||||
);
|
||||
};
|
||||
|
||||
window.ServicesPage = ServicesPage;
|
||||
window.StackPage = StackPage;
|
||||
window.AgentsPage = AgentsPage;
|
||||
window.TimelinePage = TimelinePage;
|
||||
window.ContactPage = ContactPage;
|
||||
Reference in New Issue
Block a user