mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-26 18:26:38 +00:00
100 lines
3.9 KiB
XML
100 lines
3.9 KiB
XML
import { ClientOnly } from 'remix-utils/client-only';
|
||
import { Header } from '~/components/header/Header';
|
||
import { Menu } from '~/components/sidebar/Menu.client';
|
||
import BackgroundRays from '~/components/ui/BackgroundRays';
|
||
import { TooltipProvider } from '@radix-ui/react-tooltip';
|
||
|
||
function AboutPage() {
|
||
return (
|
||
<TooltipProvider>
|
||
<div className="flex flex-col h-full w-full bg-bolt-elements-background-depth-1">
|
||
<BackgroundRays />
|
||
<Header />
|
||
<ClientOnly>{() => <Menu />}</ClientOnly>
|
||
<div className="max-w-3xl mx-auto px-6 py-12 prose prose-invert">
|
||
<h1 className="text-4xl font-bold mb-8">About Nut</h1>
|
||
|
||
<p className="mb-6">
|
||
Nut is an{' '}
|
||
<a
|
||
href="https://github.com/replayio/bolt"
|
||
className="text-bolt-elements-accent underline hover:no-underline"
|
||
target="_blank"
|
||
rel="noopener noreferrer"
|
||
>
|
||
open source fork
|
||
</a>{' '}
|
||
of{' '}
|
||
<a
|
||
href="https://bolt.new"
|
||
className="text-bolt-elements-accent underline hover:no-underline"
|
||
target="_blank"
|
||
rel="noopener noreferrer"
|
||
>
|
||
Bolt.new
|
||
</a>{' '}
|
||
for helping you develop full stack apps using AI. AI developers frequently struggle with fixing
|
||
even simple bugs when they don't know the cause, and get stuck making ineffective changes
|
||
over and over. We want to crack these tough nuts, so to speak, so you can get back to building.
|
||
</p>
|
||
|
||
<p className="mb-6">
|
||
When you ask Nut to fix a bug, it creates a{' '}
|
||
<a
|
||
href="https://replay.io"
|
||
className="text-bolt-elements-accent underline hover:no-underline"
|
||
target="_blank"
|
||
rel="noopener noreferrer"
|
||
>
|
||
Replay.io
|
||
</a>{' '}
|
||
recording of your app and whatever you did to produce the bug. The recording captures all the runtime
|
||
behavior of your app, which is analyzed to explain the bug's root cause.
|
||
This explanation is given to the AI developer so it has context to write a good fix.
|
||
</p>
|
||
|
||
<p className="mb-6">
|
||
Nut.new is already pretty good at fixing problems, and we’re working to make it better.
|
||
We want it to reliably fix anything you’re seeing, as long as it has a clear explanation
|
||
and the problem isn’t too complicated (AIs aren’t magic). If it’s doing poorly, let us know!
|
||
Use the UI to leave us some private feedback or save your project to our public set of problems
|
||
where AIs struggle.
|
||
</p>
|
||
|
||
<p>
|
||
Nut is being developed by the{' '}
|
||
<a
|
||
href="https://replay.io"
|
||
className="text-bolt-elements-accent underline hover:no-underline"
|
||
target="_blank"
|
||
rel="noopener noreferrer"
|
||
>
|
||
Replay.io
|
||
</a>{' '}
|
||
team.
|
||
We're offering unlimited free access to Nut.new for early adopters who can give us feedback
|
||
we'll use to improve Nut. Reach us at{' '}
|
||
<a
|
||
href="mailto:hi@replay.io"
|
||
className="text-bolt-elements-accent underline hover:no-underline"
|
||
>
|
||
hi@replay.io
|
||
</a>{' '} or fill out our{' '}
|
||
<a
|
||
href="https://replay.io/contact"
|
||
className="text-bolt-elements-accent underline hover:no-underline"
|
||
target="_blank"
|
||
rel="noopener noreferrer"
|
||
>
|
||
contact form
|
||
</a>{' '}
|
||
to join our early adopter program.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</TooltipProvider>
|
||
);
|
||
}
|
||
|
||
export default AboutPage;
|