mirror of https://github.com/kortix-ai/suna.git
fix changelog data
This commit is contained in:
parent
5a5342fcc9
commit
388391c7d8
|
@ -144,9 +144,9 @@ export default function GoogleSignIn({ returnUrl }: GoogleSignInProps) {
|
|||
return (
|
||||
<button
|
||||
disabled
|
||||
className="w-full h-12 flex items-center justify-center gap-2 text-sm font-medium tracking-wide rounded-full bg-background border border-border opacity-60 cursor-not-allowed"
|
||||
className="w-full h-12 flex items-center justify-center text-sm font-medium tracking-wide rounded-full bg-background text-foreground border border-border hover:bg-accent/30 transition-all duration-200 disabled:opacity-60 disabled:cursor-not-allowed font-sans opacity-60 cursor-not-allowed"
|
||||
>
|
||||
<FcGoogle className="w-5 h-5" />
|
||||
<FcGoogle className="w-5 h-5 mr-2" />
|
||||
Google Sign-In Not Configured
|
||||
</button>
|
||||
);
|
||||
|
@ -169,7 +169,7 @@ export default function GoogleSignIn({ returnUrl }: GoogleSignInProps) {
|
|||
<button
|
||||
onClick={handleManualGoogleSignIn}
|
||||
disabled={isLoading || !isGoogleLoaded}
|
||||
className="w-full h-12 flex items-center justify-center gap-3 text-sm font-medium tracking-wide rounded-full bg-background border border-border hover:bg-accent hover:text-accent-foreground transition-colors disabled:opacity-50 disabled:cursor-not-allowed"
|
||||
className="w-full h-12 flex items-center justify-center text-sm font-medium tracking-wide rounded-full bg-background text-foreground border border-border hover:bg-accent/30 transition-all duration-200 disabled:opacity-60 disabled:cursor-not-allowed font-sans"
|
||||
>
|
||||
{isLoading ? (
|
||||
<>
|
||||
|
@ -178,7 +178,7 @@ export default function GoogleSignIn({ returnUrl }: GoogleSignInProps) {
|
|||
</>
|
||||
) : (
|
||||
<>
|
||||
<FcGoogle className="w-5 h-5" />
|
||||
<FcGoogle className="w-5 h-5 mr-2" />
|
||||
Continue with Google
|
||||
</>
|
||||
)}
|
||||
|
|
|
@ -2,61 +2,25 @@ import { ChangelogData } from "../sections/changelog";
|
|||
|
||||
export const changeLogData: ChangelogData[] = [
|
||||
{
|
||||
version: "Version 1.3.0",
|
||||
date: "15 November 2024",
|
||||
title: "Enhanced Analytics Dashboard",
|
||||
version: "Version 2.0.0",
|
||||
date: "July 2025",
|
||||
title: "Introducing Custom Agents, Agent Marketplace, and much more!",
|
||||
description:
|
||||
"We've completely redesigned our analytics dashboard to provide deeper insights and improved visualizations of your data.",
|
||||
"The most significant update for Suna yet. Build, customize, and share AI agents. Connect any service, automate complex workflows, and discover a thriving marketplace of community-built agents.",
|
||||
items: [
|
||||
"Interactive data visualizations with real-time updates",
|
||||
"Customizable dashboard widgets",
|
||||
"Export analytics in multiple formats (CSV, PDF, Excel)",
|
||||
"New reporting templates for common use cases",
|
||||
"Improved data filtering and segmentation options",
|
||||
"Custom Agent Builder - Create specialized AI agents with tailored system prompts and behaviors",
|
||||
"Model Context Protocol (MCP) Integration - Connect agents to any external service",
|
||||
"Agent Marketplace - Discover, install, and share agents with the community",
|
||||
"Visual Workflow Designer - Build complex multi-step workflows with conditional logic",
|
||||
"Unified Integrations Hub - Manage all your service connections in one place",
|
||||
"Version Control for Agents - Track changes, create versions, and rollback safely",
|
||||
"Advanced Agent Configuration - Fine-tune model parameters, tools, and capabilities",
|
||||
"Enterprise-Grade Security - Encrypted credential management and secure agent execution"
|
||||
],
|
||||
image: "https://deifkwefumgah.cloudfront.net/shadcnblocks/block/placeholder-aspect-video-1.svg",
|
||||
image: "/thumbnail-dark.png",
|
||||
button: {
|
||||
url: "https://shadcnblocks.com",
|
||||
text: "Learn more",
|
||||
},
|
||||
},
|
||||
{
|
||||
version: "Version 1.2.5",
|
||||
date: "7 October 2024",
|
||||
title: "Mobile App Launch",
|
||||
description:
|
||||
"We're excited to announce the launch of our mobile application, available now on iOS and Android platforms.",
|
||||
items: [
|
||||
"Native mobile experience for on-the-go productivity",
|
||||
"Offline mode support for working without internet connection",
|
||||
"Push notifications for important updates",
|
||||
"Biometric authentication for enhanced security",
|
||||
],
|
||||
},
|
||||
{
|
||||
version: "Version 1.2.1",
|
||||
date: "23 September 2024",
|
||||
title: "New features and improvements",
|
||||
description:
|
||||
"Here are the latest updates and improvements to our platform. We are always working to improve our platform and your experience.",
|
||||
items: [
|
||||
"Added new feature to export data",
|
||||
"Improved performance and speed",
|
||||
"Fixed minor bugs and issues",
|
||||
"Added new feature to import data",
|
||||
],
|
||||
image: "https://deifkwefumgah.cloudfront.net/shadcnblocks/block/placeholder-aspect-video-1.svg",
|
||||
},
|
||||
{
|
||||
version: "Version 1.0.0",
|
||||
date: "31 August 2024",
|
||||
title: "First version of our platform",
|
||||
description:
|
||||
"Introducing a new platform to help you manage your projects and tasks. We are excited to launch our platform and help you get started. We are always working to improve our platform and your experience.",
|
||||
image: "https://deifkwefumgah.cloudfront.net/shadcnblocks/block/placeholder-aspect-video-1.svg",
|
||||
button: {
|
||||
url: "https://shadcnblocks.com",
|
||||
text: "Learn more",
|
||||
url: "/agents",
|
||||
text: "Explore Agents",
|
||||
},
|
||||
},
|
||||
];
|
Loading…
Reference in New Issue