Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions landing-page/src/components/BookCallCTA.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ export default function BookCallCTA() {

<div className="max-w-4xl mx-auto text-center">
<h2 className={`text-4xl md:text-5xl text-white mb-6 ${pattanakarn.className}`}>
launch your ai workflows
plug into exosphere
</h2>
<p className={`text-xl text-[#B3D6FF] mb-8 max-w-2xl mx-auto ${darkerGrotesque.className}`}>
Book a call with our team to discuss how we can help you build and optimize your AI workflows for maximum efficiency.
Offload autoscaling, branching logic, and state storage. Exosphere keeps every agent running reliably from your first prototype to millions of tasks.

Comment on lines +13 to +14

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The text content within this <p> tag has inconsistent indentation and an unnecessary blank line. For better readability and to maintain a consistent code style, please correct the indentation and remove the extra line.

          Offload autoscaling, branching logic, and state storage. Exosphere keeps every agent running reliably from your first prototype to millions of tasks.

</p>
<button className="relative inline-flex h-14 overflow-hidden rounded-xl p-[1px] focus:outline-none focus:ring-2 focus:ring-slate-400 focus:ring-offset-2 focus:ring-offset-slate-50 pointer-events-auto"
onClick={() => {
Expand All @@ -19,7 +20,7 @@ export default function BookCallCTA() {
>
<span className="absolute Z-200 inset-[-1000%] animate-[spin_2s_linear_infinite] bg-[conic-gradient(from_90deg_at_50%_50%,#8bdfff_0%,#e4587d_50%,#66d1b5_100%)]" />
<span className="inline-flex h-full w-full p-2 cursor-pointer items-center justify-center rounded-xl bg-slate-950 px-6 py-2 text-base font-medium text-white backdrop-blur-3xl">
Start batching
Book a call
</span>
</button>
</div>
Expand Down
8 changes: 4 additions & 4 deletions landing-page/src/components/OrbitalSystem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ export default function OrbitalSystem() {
<div className="flex flex-col justify-start items-center md:items-start px-4 md:pl-20 pb-2 md:py-0 max-w-xl mx-auto mt-[10vh]">

<h1 className={`${pattanakarn.className} text-white text-3xl sm:text-3xl md:text-5xl lg:text-6xl leading-tight mb-4 drop-shadow-lg text-center md:text-left`}>
batch ai agents for any scale
scalable infra for your ai agents
</h1>
<p className={`${darkerGrotesque.className} text-[#B3D6FF] text-sm sm:text-base md:text-lg lg:text-xl mb-6 md:mb-8 drop-shadow-md text-center md:text-left`}>
Truly dynamic, built for agents at scale. Branching agent flows, autoscaling compute, and state persistence for your AI agents.
<p className={`${darkerGrotesque.className} text-[#B3D6FF] text-sm sm:text-base md:text-lg lga:text-xl mb-6 md:mb-8 drop-shadow-md text-center md:text-left`}>
Dynamically branch workflows at runtime, automatically scale compute resources, and reliably persist agent state so your AI agents can handle any workload effortlessly.
Comment on lines +30 to +31

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

There's a typo in the Tailwind CSS class lga:text-xl on line 30; it should be lg:text-xl. This typo prevents the text-xl style from being applied on large screens. Additionally, the text content on line 31 is not correctly indented, which affects code readability.

            <p className={`${darkerGrotesque.className} text-[#B3D6FF] text-sm sm:text-base md:text-lg lg:text-xl mb-6 md:mb-8 drop-shadow-md text-center md:text-left`}>
              Dynamically branch workflows at runtime, automatically scale compute resources, and reliably persist agent state so your AI agents can handle any workload effortlessly.

</p>
<div className="flex flex-col md:flex-row items-center gap-3 mb-4 w-full md:justify-start justify-center">
<button className="relative inline-flex z-200 h-10 overflow-hidden rounded-xl p-[1px] focus:outline-none focus:ring-2 focus:ring-slate-400 focus:ring-offset-2 focus:ring-offset-slate-50 pointer-events-auto mt-2 group"
Expand All @@ -38,7 +38,7 @@ export default function OrbitalSystem() {
>
<span className="absolute Z-200 inset-[-1000%] animate-[spin_2s_linear_infinite] bg-[conic-gradient(from_90deg_at_50%_50%,#8bdfff_0%,#e4587d_50%,#66d1b5_100%)] group-hover:animate-none" />
<span className={`${darkerGrotesque.className} inline-flex h-full w-full cursor-pointer items-center justify-center rounded-xl bg-slate-950 px-5 py-4 text-md font-medium text-white backdrop-blur-3xl`}>
Start batching
See how it works
</span>
</button>
<button className="relative inline-flex z-200 h-10 overflow-hidden rounded-xl p-[1px] f pointer-events-auto mt-2 transition-all duration-300 hover:shadow-lg"
Expand Down