Merge version_1 into main #1

Merged
bender merged 3 commits from version_1 into main 2026-02-20 14:45:36 +00:00
3 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import HeroCentered from '@/components/sections/hero/HeroCentered';
@@ -98,7 +98,7 @@ export default function LandingPage() {
{title: 'Global Scalability', description: 'Architect and deploy your SaaS solution on a global scale, ensuring high availability and performance across all regions.', bentoComponent: 'globe'},
{title: 'Real-time Analytics', description: 'Integrate powerful real-time analytics to monitor user behavior, application performance, and business metrics at a glance.', bentoComponent: 'line-chart'},
{title: 'Security Checklist', description: 'Built with security-first principles and strict compliance standards to protect your data and user privacy.', bentoComponent: '3d-task-list', items: [{icon: Lock, label: 'Data Encryption', time: 'Completed'}, {icon: ShieldCheck, label: 'Audit Trails', time: 'Completed'}, {icon: UserCog, label: 'Access Controls', time: 'In Progress'}]},
{title: 'Seamless Integrations', description: 'Connect effortlessly with a vast ecosystem of third-party tools and services to extend your platform\'s capabilities.', bentoComponent: 'orbiting-icons', centerIcon: Plug, items: [{icon: Users, ring: 1}, {icon: Zap, ring: 2}, {icon: Settings, ring: 3}, {icon: Cloud, ring: 1}, {icon: Server, ring: 2}]},
{title: 'Seamless Integrations', description: "Connect effortlessly with a vast ecosystem of third-party tools and services to extend your platform's capabilities.", bentoComponent: 'orbiting-icons', centerIcon: Plug, items: [{icon: Users, ring: 1}, {icon: Zap, ring: 2}, {icon: Settings, ring: 3}, {icon: Cloud, ring: 1}, {icon: Server, ring: 2}]},
{title: 'Intuitive User Experience', description: 'Craft user interfaces that are not only beautiful but also incredibly easy to navigate, ensuring high user adoption and satisfaction.', bentoComponent: 'phone', statusIcon: Wifi, alertIcon: BellRing, alertTitle: 'New Notification', alertMessage: 'Your dashboard has been updated.', apps: [{name: 'Analytics', icon: BarChart2}, {name: 'Users', icon: Users}, {name: 'Settings', icon: Settings}, {name: 'Reports', icon: ClipboardList}, {name: 'Integrations', icon: Plug}, {name: 'Messages', icon: MessageSquare}, {name: 'Tasks', icon: CheckCircle2}, {name: 'Support', icon: LifeBuoy}]},
{title: 'AI-Powered Automation', description: 'Leverage advanced AI and machine learning to automate complex tasks, provide intelligent insights, and enhance user productivity.', bentoComponent: 'chat', aiIcon: Bot, userIcon: User, exchanges: [{userMessage: 'How can I automate customer support?', aiResponse: 'Our AI assistant can handle routine inquiries, reducing your support load by up to 60%.'}, {userMessage: 'What about lead generation?', aiResponse: 'AI-driven analytics identify high-potential leads and personalize outreach, boosting conversion rates.'}], placeholder: 'Ask AI Assistant...'}
]}
@@ -114,7 +114,7 @@ export default function LandingPage() {
features={[
{icon: Lightbulb, title: 'Innovative Solutions', description: 'We bring fresh perspectives and cutting-edge technologies to solve your most complex challenges, ensuring your SaaS stands out.'},
{icon: Layers, title: 'Full-Stack Expertise', description: 'From front-end UI/UX to robust back-end infrastructure and APIs, our team handles every layer of your SaaS development.'},
{icon: Rocket, title: 'Accelerated Growth', description: 'Our strategic approach focuses on rapid development cycles and market-fit validation to accelerate your product\'s journey to success.'},
{icon: Rocket, title: 'Accelerated Growth', description: "Our strategic approach focuses on rapid development cycles and market-fit validation to accelerate your product's journey to success."},
{icon: Shield, title: 'Unwavering Quality', description: 'Rigorous testing and quality assurance processes ensure a bug-free, high-performance application that your users will love.'},
{icon: LifeBuoy, title: 'Dedicated Support', description: 'Beyond launch, we provide continuous support, maintenance, and optimization to ensure your SaaS remains at its peak.'},
{icon: Handshake, title: 'Transparent Collaboration', description: 'We believe in open communication and collaborative partnerships, keeping you informed and involved at every stage of development.'}

View File

@@ -1,10 +1,10 @@
use client";
"use client";
import { use, useCallback } from "react";
import { useRouter } from "next/navigation";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductDetailCard from "@/components/ecommerce/productDetail/ProductDetailCard";
import ProductCart from "@/components/ecommerce/cart/ProductCart";
import { useProductDetail } from "@/hooks/useProductDetail";

View File

@@ -1,4 +1,4 @@
use client";
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";