From 691716f02b7a4a1db980858d1c4d2458f14f05b0 Mon Sep 17 00:00:00 2001 From: Adam Cohen Hillel Date: Sat, 12 Apr 2025 17:39:39 +0100 Subject: [PATCH] PLACEHOLDER --- .../src/app/components/NavBar.tsx | 47 ++++ frontendbasejump/src/app/page.tsx | 223 +++++++++++++++++- 2 files changed, 265 insertions(+), 5 deletions(-) create mode 100644 frontendbasejump/src/app/components/NavBar.tsx diff --git a/frontendbasejump/src/app/components/NavBar.tsx b/frontendbasejump/src/app/components/NavBar.tsx new file mode 100644 index 00000000..bea5c5c8 --- /dev/null +++ b/frontendbasejump/src/app/components/NavBar.tsx @@ -0,0 +1,47 @@ +'use client'; + +import Link from 'next/link'; +import { useEffect, useState } from 'react'; + +export default function NavBar() { + const [scrolled, setScrolled] = useState(false); + + useEffect(() => { + const handleScroll = () => { + const isScrolled = window.scrollY > 20; + if (isScrolled !== scrolled) { + setScrolled(isScrolled); + } + }; + + document.addEventListener('scroll', handleScroll, { passive: true }); + return () => { + document.removeEventListener('scroll', handleScroll); + }; + }, [scrolled]); + + return ( + + ); +} \ No newline at end of file diff --git a/frontendbasejump/src/app/page.tsx b/frontendbasejump/src/app/page.tsx index 75b342d1..d47d8b8f 100644 --- a/frontendbasejump/src/app/page.tsx +++ b/frontendbasejump/src/app/page.tsx @@ -1,11 +1,224 @@ import Link from 'next/link'; +import NavBar from './components/NavBar'; -export default async function Index() { - +export default function Index() { return ( -
- Landing Page Goes Here - Dashboard +
+ {/* Navigation Bar */} + + + {/* Hero Section with centered gradient and rounded bottom */} +
+
+
+
+

+ Welcome to Kortix Suna +

+

+ The intelligent platform that transforms how you interact with data, automate workflows, and make decisions. +

+
+ + Start Free Trial + + + See Examples + +
+
+
+
+
+ + {/* Use Cases Section */} +
+
+

Use Cases & Examples

+
+ {[ + { + title: "Data Processing", + description: "Process and analyze large datasets with intelligent automation that adapts to your specific needs." + }, + { + title: "Workflow Optimization", + description: "Streamline complex workflows with AI-powered optimization that reduces manual steps by up to 80%." + }, + { + title: "Decision Support", + description: "Get actionable insights and recommendations based on your data, helping you make better decisions faster." + }, + { + title: "Customer Analytics", + description: "Understand customer behavior patterns and preferences to create personalized experiences." + }, + { + title: "Predictive Maintenance", + description: "Anticipate equipment failures before they happen, reducing downtime and maintenance costs." + }, + { + title: "Supply Chain Optimization", + description: "Improve efficiency and reduce costs by optimizing your entire supply chain with intelligent forecasting." + } + ].map((useCase, index) => ( +
+

{useCase.title}

+

{useCase.description}

+
+ ))} +
+
+
+ + {/* Pricing Section */} +
+
+

Pricing Plans

+
+ {[ + { + name: "Starter", + price: "$49", + period: "per month", + description: "Perfect for individuals and small teams just getting started.", + features: [ + "Up to 5 users", + "10GB storage", + "Basic analytics", + "Standard support" + ], + cta: "Start with Starter", + featured: false + }, + { + name: "Professional", + price: "$99", + period: "per month", + description: "Ideal for growing businesses with more advanced needs.", + features: [ + "Up to 20 users", + "50GB storage", + "Advanced analytics", + "Priority support", + "Workflow automation" + ], + cta: "Choose Professional", + featured: true + }, + { + name: "Enterprise", + price: "Custom", + period: "pricing", + description: "Tailored solutions for large organizations with complex requirements.", + features: [ + "Unlimited users", + "Unlimited storage", + "Custom integrations", + "Dedicated support", + "Advanced security", + "On-premise options" + ], + cta: "Contact Sales", + featured: false + } + ].map((plan, index) => ( +
+

{plan.name}

+
+ {plan.price} + {plan.period} +
+

{plan.description}

+
    + {plan.features.map((feature, i) => ( +
  • + + + + {feature} +
  • + ))} +
+ +
+ ))} +
+
+
+ + {/* CTA Section */} +
+
+

Ready to transform your workflow?

+

+ Join thousands of satisfied users who have revolutionized their processes with Kortix Suna. +

+ + Start Your Free Trial + +
+
+ + {/* Footer */} +
) }