mirror of https://github.com/kortix-ai/suna.git
This commit is contained in:
parent
e98c47ea66
commit
e5f96d6388
|
@ -295,6 +295,7 @@
|
|||
}
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
zoom: 100%;
|
||||
}
|
||||
body {
|
||||
@apply bg-background text-foreground;
|
||||
|
|
|
@ -103,14 +103,13 @@ export default function NotFound() {
|
|||
The page you're looking for doesn't exist or has been moved.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div className="flex items-center w-full max-w-xl gap-2 flex-wrap justify-center">
|
||||
<Link
|
||||
href="/"
|
||||
className="inline-flex h-12 md:h-14 items-center justify-center gap-2 rounded-full bg-primary text-white px-6 shadow-md hover:bg-primary/90 transition-all duration-200"
|
||||
>
|
||||
<ArrowLeft className="size-4 md:size-5" />
|
||||
<span className="font-medium">Return Home</span>
|
||||
<ArrowLeft className="size-4 md:size-5 dark:text-black" />
|
||||
<span className="font-medium dark:text-black">Return Home</span>
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -49,11 +49,11 @@ export function OpenSourceSection() {
|
|||
href="https://github.com/Kortix-ai/Suna"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="group inline-flex h-10 items-center justify-center gap-2 text-sm font-medium tracking-wide rounded-full text-primary-foreground dark:text-secondary-foreground px-6 shadow-[inset_0_1px_2px_rgba(255,255,255,0.25),0_3px_3px_-1.5px_rgba(16,24,40,0.06),0_1px_1px_rgba(16,24,40,0.08)] bg-primary hover:bg-primary/90 transition-all duration-200 w-fit"
|
||||
className="group inline-flex h-10 items-center justify-center gap-2 text-sm font-medium tracking-wide rounded-full text-primary-foreground dark:text-black px-6 shadow-[inset_0_1px_2px_rgba(255,255,255,0.25),0_3px_3px_-1.5px_rgba(16,24,40,0.06),0_1px_1px_rgba(16,24,40,0.08)] bg-primary dark:bg-white hover:bg-primary/90 dark:hover:bg-white/90 transition-all duration-200 w-fit"
|
||||
>
|
||||
<span>View on GitHub</span>
|
||||
<span className="inline-flex items-center justify-center size-5 rounded-full bg-white/20 group-hover:bg-white/30 transition-colors duration-200">
|
||||
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className="text-white">
|
||||
<span className="inline-flex items-center justify-center size-5 rounded-full bg-white/20 dark:bg-black/10 group-hover:bg-white/30 dark:group-hover:bg-black/20 transition-colors duration-200">
|
||||
<svg width="12" height="12" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" className="text-primary-foreground dark:text-black">
|
||||
<path d="M7 17L17 7M17 7H8M17 7V16" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
|
||||
</svg>
|
||||
</span>
|
||||
|
|
|
@ -96,7 +96,7 @@ export const siteConfig = {
|
|||
price: "$29",
|
||||
description: "For professionals and small teams",
|
||||
buttonText: "Hire Suna",
|
||||
buttonColor: "bg-primary text-white",
|
||||
buttonColor: "bg-primary text-white dark:text-black",
|
||||
isPopular: true,
|
||||
hours: "4 hours",
|
||||
features: [
|
||||
|
@ -1053,7 +1053,7 @@ export const siteConfig = {
|
|||
backgroundImage: "/holo.png",
|
||||
button: {
|
||||
text: "Hire Suna today",
|
||||
href: "https://github.com/Kortix-ai/Suna",
|
||||
href: "/auth",
|
||||
},
|
||||
subtext: "The generalist AI Agent that acts on your behalf",
|
||||
},
|
||||
|
@ -1062,7 +1062,7 @@ export const siteConfig = {
|
|||
title: "Kortix",
|
||||
links: [
|
||||
{ id: 1, title: "About", url: "https://kortix.ai" },
|
||||
{ id: 3, title: "Contact", url: "contact@kortix.ai" },
|
||||
{ id: 3, title: "Contact", url: "mailto:hey@kortix.ai" },
|
||||
{ id: 4, title: "Careers", url: "https://kortix.ai/careers" },
|
||||
],
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue