From d007d404efd8da6cbab42bb2ab7c9447479603f6 Mon Sep 17 00:00:00 2001 From: codebox283 <87943295+codebox283@users.noreply.github.com> Date: Sun, 23 Feb 2025 10:50:29 +0530 Subject: [PATCH] added pages and updated according to doc --- app/ai-agents/page.tsx | 310 +++++++++++++++++++++++++ app/fianance/page.tsx | 337 --------------------------- app/finance/page.tsx | 368 ++++++++++++++++++++++++++++++ app/genai-readiness/page.tsx | 392 ++++++++++++++++++++++++++++++++ app/hr/page.tsx | 368 ++++++++++++++++++++++++++++++ app/marketplace/page.tsx | 320 ++++++++++++++++++++++++++ app/micro-saas/how-it-works.jsx | 73 ++++++ app/micro-saas/page.tsx | 306 +++++++++++++++++++++++++ app/sales/page.tsx | 20 +- app/services/page.tsx | 0 components/Hero/hero2.tsx | 2 +- components/Navbar/dropdowns.tsx | 21 +- components/Navbar/navbar.tsx | 2 + 13 files changed, 2170 insertions(+), 349 deletions(-) create mode 100644 app/ai-agents/page.tsx delete mode 100644 app/fianance/page.tsx create mode 100644 app/finance/page.tsx create mode 100644 app/genai-readiness/page.tsx create mode 100644 app/hr/page.tsx create mode 100644 app/marketplace/page.tsx create mode 100644 app/micro-saas/how-it-works.jsx create mode 100644 app/micro-saas/page.tsx create mode 100644 app/services/page.tsx diff --git a/app/ai-agents/page.tsx b/app/ai-agents/page.tsx new file mode 100644 index 0000000..129aaf2 --- /dev/null +++ b/app/ai-agents/page.tsx @@ -0,0 +1,310 @@ +"use client"; + +import React from 'react'; +import { motion } from 'framer-motion'; +import { MessageCircle, CheckCircle, Lightbulb, Code, Users, ArrowRight, Settings, Brain, RefreshCw, UserCheck, ChevronRight } from 'lucide-react'; +import Navbar from '@/components/Navbar/navbar'; +import Footer from '@/components/footer'; + +const ConversationalAIAgents = () => { + + const keyFeatures = [ + { + title: "Human-Style Chat Interface", + desc: "Experience seamless, interactive conversations that mimic real human dialogue.", + icon: + }, + { + title: "Semi-Autonomous Agents", + desc: "Automate everyday processes while deferring to human judgment for complex decisions.", + icon: + }, + { + title: "Adaptive Learning & Optimization", + desc: "The agent gathers insights from each engagement, fine-tuning workflows and boosting overall efficiency.", + icon: + }, + { + title: "Effortless Integration", + desc: "Convert existing Tools or Series workflows to conversational agents with just a few clicks—no coding required.", + icon: + }, + { + title: "Enhanced User Engagement", + desc: "Deliver a personalized, interactive experience that increases user satisfaction and drives better outcomes.", + icon: + } + ]; + + const benefits = [ + { + title: "Streamlined Operations", + desc: "Automate routine processes without sacrificing the quality of human judgment where it matters most.", + icon: + }, + { + title: "Continuous Improvement", + desc: "With adaptive learning, your agents become smarter and more efficient, optimizing workflows over time.", + icon: + }, + { + title: "Improved Accessibility", + desc: "A conversational interface makes complex workflows accessible to everyone, reducing training time and boosting productivity.", + icon: + }, + { + title: "Versatile Applications", + desc: "Ideal for customer support, sales, HR, project management, and more—scale your intelligent automation across your organization.", + icon: + } + ]; + + const useCases = [ + { + title: "Customer Support", + desc: "Convert FAQs and troubleshooting guides into interactive chat agents that assist customers 24/7.", + icon: + }, + { + title: "Sales & Marketing", + desc: "Engage prospects through conversational agents that guide them through product features and answer inquiries in real time.", + icon: + }, + { + title: "HR & Administration", + desc: "Streamline internal processes by turning routine HR queries and administrative tasks into dynamic, chat-driven workflows.", + icon: + }, + { + title: "Project Management", + desc: "Enhance team collaboration by using agents to manage tasks, gather feedback, and update project statuses interactively.", + icon: + } + ]; + + + return ( +
+ + + {/* Hero Section */} + + {/* Animated Gradient Background */} + + +
+ + AI Agents + + +
+
+
+ + + Conversational AI Agents: Transform Your Workflows into Smart, Human-Centric Assistants + + + + Elevate your business operations by converting any workflow—whether it’s a tool or a Series—into an intelligent, conversational AI agent. Our platform empowers you to create semi-autonomous agents that communicate in a human-like manner while keeping human decision-making in the loop. + +
+ + + {/* How It Works Section */} + +

How It Works

+
+ {[ + { + icon: , + title: "Convert with a Click", + desc: "Easily transform your existing workflows into a chat-based AI agent using our intuitive interface.", + color: "from-blue-500 to-cyan-500" + }, + { + icon: , + title: "Human-Like Interaction", + desc: "The agent engages users through a conversational interface, guiding them through tasks and processes in a natural, friendly manner.", + color: "from-pink-500 to-red-500" + }, + { + icon: , + title: "Semi-Autonomous Operation", + desc: "Routine tasks are automated, while critical decision points trigger human intervention—ensuring that key decisions always benefit from human insight.", + color: "from-green-500 to-emerald-500" + }, + { + icon: , + title: "Adaptive Learning", + desc: "The system learns from every interaction, refining its processes and becoming more efficient over time through continuous feedback.", + color: "from-purple-500 to-indigo-500" + } + ].map((item, index) => ( +
+ {/* Icon & Title */} +
+
{item.icon}
+

{item.title}

+
+ + {/* Description */} +

{item.desc}

+ + {/* Soft Glow Effect */} +
+
+ ))} +
+ + + {/* Key Features Section */} + +

Key Features

+
+ {keyFeatures.map((feature, index) => ( +
+
+ {feature.icon} +
+
+

{feature.title}

+

{feature.desc}

+
+ {/* Soft Glow Effect */} +
+
+ ))} +
+ + + {/* Benefits Section */} + +

Benefits

+
+ {benefits.map((benefit, index) => ( +
+
+
{benefit.icon}
+

{benefit.title}

+
+

{benefit.desc}

+ + {/* Soft Glow Effect */} +
+
+ ))} +
+ + + {/* Use Cases Section */} + +

Use Cases

+
+ {useCases.map((useCase, index) => ( +
+
+
{useCase.icon}
+

{useCase.title}

+
+

{useCase.desc}

+ + {/* Soft Glow Effect with Different Colors */} +
+
+ ))} +
+ + + {/* Get Started Section */} + +

Get Started

+

Transform your workflows into intelligent, human-centric AI agents today. Experience the perfect blend of automation and human engagement that evolves with your business needs.

+
+ + Convert Your Workflow + + Learn More +
+
+ +
+
+ ); +}; + +export default ConversationalAIAgents; diff --git a/app/fianance/page.tsx b/app/fianance/page.tsx deleted file mode 100644 index 52cd588..0000000 --- a/app/fianance/page.tsx +++ /dev/null @@ -1,337 +0,0 @@ -"use client"; - -import React from 'react'; -import Navbar from '@/components/Navbar/navbar'; -import Hero from '@/components/Hero/hero'; -import Features from "@/components/Features/features"; -import Footer from "@/components/footer"; -import { HoverEffect } from '@/components/ui/card-hover-effect'; -import { Marquee } from '@/components/ui/marquee'; -import { TextGenerateEffect } from "@/components/ui/text-generate-effect"; -import { FaListUl, FaSearch, FaArrowsAlt, FaPlug, FaPaste, FaRegFileAlt } from 'react-icons/fa'; -import { OrbitingCircles } from '@/components/magicui/orbiting-circles'; - -const heading = "Integrations - Connect Your Workflows with Everyday Integrations"; -const description = "Seamlessly unite all your tools and applications with Everyday. Our robust integration capabilities empower you to create an interconnected ecosystem, streamlining your workflows and improving productivity."; -const image = "https://res.cloudinary.com/zapier-media/video/upload/q_auto:best/f_auto/v1726860625/Homepage%20%E2%80%94%20Sept%202024/sc03_HP_240917_Power-with-AI_v02_supxar.mp4" - -const features = [ - { - head: "Connect the apps you already love", - desc: "Everyday supports over 100 apps, so you can tame the chaos and turn your tools into processes all in one place.", - button: "Explore all apps", - link: "#" - }, - { - head: "Start quickly with these pre-built templates from other Everyday users", - desc: "Automate your tasks in just a few minutes to reclaim countless hours of your time.", - button: "Explore more", - link: "#" - } -] - -const images = [ - "https://www.zarla.com/images/starbucks-logo-2400x2400-20220513.png?crop=1:1,smart&width=150&dpr=2", - "https://www.zarla.com/images/apple-logo-2400x2400-20220512-3.png?crop=1:1,smart&width=150&dpr=2", - "https://www.zarla.com/images/google-logo-2400x2400-20220519.png?crop=1:1,smart&width=150&dpr=2", - "https://www.zarla.com/images/mercedes-benz-logo-2400x2400-20220513-2.png?crop=1:1,smart&width=150&dpr=2", - "https://www.zarla.com/images/walmart-logo-2400x2400-20223105.png?crop=1:1,smart&width=150&dpr=2", - "https://www.zarla.com/images/pepsi-logo-2400x2400-20220513-1.png?crop=1:1,smart&width=150&dpr=2", -]; - -const contents = [ - { - title: "Centralize Your Data", - description: - "No more switching between apps. Gather all your data in one place, simplifying your processes and ensuring you have a single, reliable source of truth.", - link: "https://stripe.com", - icon: FaListUl, // Add icon here - }, - { - title: "Automate Your Processes", - description: - "Maximize efficiency by automating actions between your integrated apps. Transfer data, trigger actions, and manage notifications effortlessly, allowing you to focus on what matters most.", - link: "https://netflix.com", - icon: FaSearch, // Add icon here - }, - { - title: "Improve Collaboration", - description: - "By integrating your favorite communication tools, you can enhance teamwork and foster a more collaborative environment. Share updates, delegate tasks, and keep everyone in the loop, all within Everyday.", - link: "https://enterprise.everydayseries.com/", - icon: FaArrowsAlt, // Add icon here - }, -]; - -type Feature = { - title: string; - description: string; - imgSrc: string; - vector: string; -}; - -const featuresData: Feature[] = [ - { - title: "Feature 1", - description: "Description for Feature 1", - imgSrc: "/images/feature1.png", - vector: "/vectors/feature1.svg", // Added vector property - }, - { - title: "Feature 2", - description: "Description for Feature 2", - imgSrc: "/images/feature2.png", - vector: "/vectors/feature2.svg", // Added vector property - }, - { - title: "Feature 3", - description: "Description for Feature 3", - imgSrc: "/images/feature3.png", - vector: "/vectors/feature3.svg", // Added vector property - }, -] - -const words = `“Need more? Our integration capabilities are constantly expanding, with new additions regularly introduced to our platform.”` - -export default function Integrations() { - return ( -
- - -
-

{heading}

-

{description}

-
- -
-
- - - - - - - - - - - - - -
-
-

Bring Your Tools Together

-

With Everyday, you can easily connect and synchronize data from thousands of applications, creating a comprehensive and efficient workflow tailored to your business needs.

-
-
- -
- {features.map((item, index) => ( -
- {/* Feature Heading and Description */} -

{item.head}

-

{item.desc}

- - {item.button} - - - {/* Conditional Rendering for Marquee After First Feature */} - {index === 0 && ( - <> - -
- {images.map((img, index) => ( - {`Avatar - ))} -
-
- -
- {images.map((img, index) => ( - {`Avatar - ))} -
-
- {/* Add gradient effects for marquee */} -
-
- - )} - - {/* Conditional Rendering for GIF After Second Feature */} - {index === 1 && ( -
- Workflow GIF -
- )} -
- ))} -
-
- -
- - -
-
- ★★★★★ -
- - {/*

- Magic Button: Simply press the magic button to instantly generate your series automatically. -

*/} - -
- -
-
- ); -} - - - -const Icons = { - gitHub: () => ( - - - - ), - notion: () => ( - - - - - ), - openai: () => ( - - - - ), - googleDrive: () => ( - - - - - - - - - ), - whatsapp: () => ( - - - - - - - - - - - - - - - - - ), -}; \ No newline at end of file diff --git a/app/finance/page.tsx b/app/finance/page.tsx new file mode 100644 index 0000000..601c25b --- /dev/null +++ b/app/finance/page.tsx @@ -0,0 +1,368 @@ +"use client"; + +import React from 'react'; +import Navbar from '@/components/Navbar/navbar'; +import Footer from "@/components/footer"; +import { HoverEffect } from '@/components/ui/card-hover-effect'; +import { Marquee } from '@/components/ui/marquee'; +import { TextGenerateEffect } from "@/components/ui/text-generate-effect"; +import { FaListUl, FaSearch, FaArrowsAlt, FaRegFileAlt, FaCalendarAlt, FaChartLine, + FaTasks, FaUsers, FaCog, FaRocket, FaLightbulb, FaDatabase, FaMoneyBill } from 'react-icons/fa'; //Added FaMoneyBill +import { OrbitingCircles } from '@/components/magicui/orbiting-circles'; + +const heading = "Innovative Finance Teams Drive Transformation with Everyday"; // Changed Heading +const description = "Collect the data you need for planning and reporting, manage budgets and expenses, and optimize your workflows."; // Changed Description + +const features = [ + { + head: "Centralize Financial Data for Planning & Reporting", //Changed head + desc: "Gather all necessary data in one platform to streamline financial planning and generate accurate reports.", //Changed desc + button: "Explore tools", + buttonColor: "sky-200", + image: "https://res.cloudinary.com/zapier-media/image/upload/q_auto/f_auto/v1727809087/Solutions/Marketing/marketing-lp_01_slh5ws.png", + link: "#", + icon: // Changed Icon + }, + { + head: "Manage Budgets and Expenses Efficiently", // Changed head + desc: "Monitor expenses and budgets in real-time. Effortlessly create and share reports with your team.", // Changed desc + button: "Get started", + buttonColor: "purple-300", + image: "https://res.cloudinary.com/zapier-media/image/upload/q_auto/f_auto/v1727809087/Solutions/Marketing/marketing-lp_02_ivu6pd.png", + link: "#", + icon: // Changed Icon + }, + { + head: "Automate Financial Reporting Processes", // Changed head + desc: "Speed up repetitive tasks by creating automated workflows for closing books and payment notifications.", // Changed desc + button: "Unlock now", + buttonColor: "amber-200", + image: "https://res.cloudinary.com/zapier-media/image/upload/q_auto/f_auto/v1727809091/Solutions/Marketing/marketing-lp_04_liatuw.png", + link: "#", + icon: // Changed Icon + }, + { + head: "Gain Real-time Insights with Custom Reports", // Changed head + desc: "Build custom reports to monitor budget spend, purchase approvals, and other key financial metrics.", // Changed desc + button: "See demo", + buttonColor: "emerald-200", + image: "https://res.cloudinary.com/zapier-media/image/upload/q_auto/f_auto/v1727809091/Solutions/Marketing/marketing-lp_04_liatuw.png", + link: "#", + icon: + }, + { + head: "Simplify Financial Workflows and Processes", // Changed head + desc: "Organize cross-functional requests, data, and information in one platform to understand your company’s financial needs and plan for the future.", // Changed desc + button: "Learn more", + buttonColor: "rose-200", + image: "https://res.cloudinary.com/zapier-media/image/upload/q_auto/f_auto/v1727809087/Solutions/Marketing/marketing-lp_02_ivu6pd.png", + link: "#", + icon: // Changed Icon + }, + { + head: "Ensure Compliance and Accuracy", // Changed head + desc: "Maintain accurate financial records and streamline compliance processes with a centralized system.", // Changed desc + button: "View details", + buttonColor: "blue-200", + image: "https://res.cloudinary.com/zapier-media/image/upload/q_auto/f_auto/v1727809087/Solutions/Marketing/marketing-lp_01_slh5ws.png", + link: "#", + icon: + } +]; + +const whyEveryday = [ + { + title: "Perfect Fit for Finance Teams", // Changed title + description: "Everyday streamlines financial roadmaps, budget tracking, and expense management, keeping them perfectly aligned. With the right data at their fingertips, teams can concentrate on delivering exceptional financial results, quicker.", // Changed Description + icon: + }, + { + title: "Monitor Expenses and Budgets in Real-Time", // Changed title + description: "An executive dashboard allows you to delve into Key Results. Monitor health, status, and related information like objectives or projects.", // Changed Description + icon: + }, + { + title: "Accelerate Financial Reporting", // Changed title + description: "Create, manage, and deliver a sales roadmap that energizes your entire organization, yet is adaptable enough to adjust to unforeseen circumstances.", // Changed Description + icon: + }, + { + title: "Connect Your Work Across Different Sources", // Changed title + description: "Synchronize around a flexible, organization-wide roadmap. Customizable views allow every department to see their role, and plan accordingly.", // Changed Description + icon: + } +]; + +const detailedFeatures = [ + { + title: "Real-Time Financial Reporting", // Changed title + description: "Built-in reporting swiftly uncovers key insights and best practices, expediting action and elevating your processes.", // Changed Description + subFeature: "Consolidate All Essential Data in One Place Integrate your crucial tools to bring more context into the sales process.", // Changed subFeature + icon: + }, + { + title: "Efficient Expense Management", // Changed title + description: "Draw together product insights by consolidating all feedback—from every tool and source—into a single, accessible location.", // Changed Description + subFeature: "Ensure launches stay on course with comprehensive tracking and management.", // Changed subFeature + icon: + }, + { + title: "Centralize Financial Data", // Changed title + description: "Accumulating your customers' insights in one platform ensures you're steering development in the right direction.", // Changed Description + subFeature: "Develop a feedback repository from every tool and source into a single, accessible location.", // Changed subFeature + icon: + }, + { + title: "Automate Financial Workflows", // Changed title + description: "Plan and Prioritize as a Team. Stay on track with every initiative while maintaining a detailed view into OKRs.", // Changed Description + subFeature: "Interconnect across all teams with comprehensive data visualization tools.", // Changed subFeature + icon: + } +]; + +const words = `"Experience true versatility for finance teams. Everyday seamlessly integrates your financial roadmaps, budget tracking, and target schedules, keeping them perfectly aligned."`; // Changed Testimonial + +export default function FinanceHub() { // Changed function name + return ( +
+ + + {/* Hero Section */} +
+
+

+ {heading} +

+

+ {description} +

+
+ + +
+
+
+
+
+
+ ... {/* Integration Hub */} +
+
+
+ + + + + + + + + + + + + +
+
+

+ Connect Your Finance Tools +

+

+ With Everyday, you can easily connect and synchronize data from your accounting software, banking platforms, expense management tools, and more, creating a comprehensive and efficient workflow tailored to your finance team's needs. +

+ +
+
+
+ + {/* Why Everyday Section */} +
+
+

+ Why Everyday is the Perfect Fit for Finance Teams +

+
+ {whyEveryday.map((item, index) => ( +
+
{item.icon}
+

{item.title}

+

{item.description}

+
+ ))} +
+
+
+ + {/* Features Grid */} +
+
+

All Features

+

+ Everything you need to optimize your financial workflows in one powerful platform +

+
+ {features.map((feature, index) => ( +
+
{feature.icon}
+

{feature.head}

+

{feature.desc}

+ + {feature.button} + +
+ ))} +
+
+
+ + {/* Testimonial */} +
+
+
+ ★★★★★ +
+ +

— Michael Scott, Regional Manager

+
+
+ + {/* Detailed Features */} +
+
+

+ Powerful Features for Modern Finance Teams +

+
+ {detailedFeatures.map((feature, index) => ( +
+
{feature.icon}
+
+

{feature.title}

+

{feature.description}

+
+

{feature.subFeature}

+
+
+
+ ))} +
+
+
+ + {/* Use Cases Section - Replacing Marketplace */} +
+
+

+ Manage Your Crucial Finance Workflows +

+

+ Whether you’re managing budgets or invoicing, you can do it in Everyday. Get started with pre-made templates, and customize them to fit your specific needs. +

+
+ {/* Example Use Cases - Adapt Icons and Descriptions Accordingly */} +
+ +

Fundraising

+

Track and manage fundraising efforts, investor relations, and financial projections.

+ + Explore + +
+
+ +

Budget Tracker

+

Monitor budget spend, track expenses, and generate reports to stay within financial goals.

+ + Explore + +
+
+ +

Invoicing

+

Automate invoicing processes, track payments, and manage client billing efficiently.

+ + Explore + +
+
+
+
+ + {/* CTA Section */} +
+
+

+ Ready to Transform Your Financial Workflow? +

+

+ Join thousands of finance teams who have revolutionized their processes with Everyday. +

+
+ + +
+
+
+ +
+
+ ); +} + +const Icons = { + salesforce: () => ( + + + + + + + + ), + hubspot: () => ( + + + + + + + + + ), + slack: () => ( + + + + + + + + + + + ), + zoom: () => ( + + + + + ), + linkedin: () => ( + + + + + + + ), +}; \ No newline at end of file diff --git a/app/genai-readiness/page.tsx b/app/genai-readiness/page.tsx new file mode 100644 index 0000000..b402255 --- /dev/null +++ b/app/genai-readiness/page.tsx @@ -0,0 +1,392 @@ +"use client"; + +import React from 'react'; +import { motion } from 'framer-motion'; +import { Brain, Users, Rocket, Globe, MapPin, ChevronRight, Book, Star, Target, Bot, ArrowRight, HeartPulse, LineChart, GraduationCap, Plane, Megaphone, Lightbulb, Code, UsersRound } from 'lucide-react'; +import Navbar from '@/components/Navbar/navbar'; +import Footer from '@/components/footer'; + +const AIProgramCard = () => { + const learn = [ + { + icon: , + title: "Dive Deep into AI Fundamentals", + desc: "Learn cutting-edge AI concepts and how to implement them using our no-code platform.", + gradient: "from-pink-500/50 to-purple-500/50" + }, + { + icon: , + title: "Build Real-World AI Agents", + desc: "Gain practical, project-based experience by creating and deploying your own AI solutions.", + gradient: "from-blue-500/50 to-cyan-500/50" + }, + { + icon: , + title: "Monetize Your Expertise", + desc: "Master strategies to transform your AI agents into recurring revenue streams.", + gradient: "from-purple-500/50 to-indigo-500/50" + } + ]; + + return ( +
+ + {/* Hero */} + + {/* Circular Animated Gradient */} + + +
+ + Generative AI + + {" "}Readiness{" "} + + Program + + +
+
+
+ + + Master the Art of Building AI Agents + + + + Are you ready to redefine your business potential with AI? Our Generative AI Readiness Program is a highly selective, intensive cohort designed to transform driven solopreneurs into AI innovators. Through a rigorous learning journey, you'll acquire the hands-on skills needed to build, launch, and monetize your very own AI agents—regardless of your domain. + +
+ + + {/* What Is the Program */} + +

What Is the Generative AI Readiness Program?

+

+ This elite program is tailored for visionary solopreneurs eager to leverage AI to transform their services. Over the course of the program, you'll: +

+
+ {learn.map((feature, index) => ( +
+ {/* Card Content */} +
+ {/* Icon */} +
+ {feature.icon} +
+ + {/* Title & Description */} +

{feature.title}

+

{feature.desc}

+
+ + {/* Soft Glow Effect */} +
+
+ ))} +
+ +

+ Our curriculum is designed to be domain agnostic, meaning it applies whether you're in tech, healthcare, finance, education, creative industries, or beyond. +

+ + + {/* Exclusivity & Global Impact */} + +

Exclusivity & Global Impact

+
+

+ This isn't just any learning program—it's an elite community. Our rigorous selection process accepts less than 0.5% of applicants, ensuring that only the most passionate and capable solopreneurs join our ranks. +

+
+ {[ + { value: "0.5%", label: "Acceptance Rate" }, + { value: "10+", label: "Countries" }, + { value: "Elite", label: "Community" } + ].map((stat, index) => ( +
+
{stat.value}
+
{stat.label}
+
+ ))} +
+
+
+ + {/* Innovative Creations */} + +

Innovative Creations from Our Elite Cohort

+
+ {[ + { + name: "MedAssist", + location: "India", + gradient: "from-pink-500 to-rose-500", + icon: , + description: + "A cutting-edge health companion that delivers real-time symptom assessments, streamlined appointment scheduling, and personalized wellness insights. MedAssist is revolutionizing patient care by making healthcare more accessible and engaging." + }, + { + name: "FinVision", + location: "South Africa", + gradient: "from-blue-500 to-cyan-500", + icon: , + description: + "An intelligent financial advisor that harnesses AI to generate smart investment strategies, monitor market dynamics, and offer tailored portfolio insights. FinVision empowers users to make confident, informed decisions in the fast-paced world of finance." + }, + { + name: "EduGuide", + location: "Australia", + gradient: "from-green-500 to-emerald-500", + icon: , + description: + "A dynamic tutoring assistant that personalizes learning by curating essential study materials, tracking progress, and providing on-demand academic support. EduGuide is setting a new standard for remote education, making learning both intuitive and impactful." + }, + { + name: "TravelBuddy", + location: "Norway", + gradient: "from-orange-500 to-amber-500", + icon: , + description: + "A personalized travel concierge that crafts bespoke itineraries, uncovers local gems, and integrates seamless booking services. TravelBuddy transforms travel planning into an inspiring journey of discovery and ease." + }, + { + name: "MarketPro", + location: "Global", + gradient: "from-purple-500 to-indigo-500", + icon: , + description: + "A versatile AI powerhouse that automates customer engagement, delivers actionable market insights, and orchestrates precision-targeted marketing campaigns. MarketPro is the ultimate solution for businesses aiming to lead in a competitive marketplace." + } + ].map((project, index) => ( + + {/* Card Content */} +
+
+

+ {project.icon} {project.name} +

+
+ + {project.location} +
+
+

{project.description}

+
+ + {/* Soft Glow Effect */} +
+ + ))} +
+

+

+ These creations not only exemplify the transformative power of AI but also ignite the spark for future innovations. Join us and be a part of the revolution. +

+

+ + + {/* What You Can Expect */} + +

What You Can Expect

+
+ {[ + { + title: "Intensive, Hands-On Training", + desc: "Experience a structured, immersive curriculum that challenges you to push your boundaries.", + icon: , + gradient: "from-yellow-500 to-orange-500" + }, + { + title: "Expert Mentorship", + desc: "Learn directly from industry leaders and seasoned entrepreneurs who guide you every step of the way.", + icon: , + gradient: "from-blue-500 to-cyan-500" + }, + { + title: "Global Networking Opportunities", + desc: "Connect with a small, elite group of peers from around the world, sharing insights and building lasting relationships.", + icon: , + gradient: "from-green-500 to-emerald-500" + }, + { + title: "Real-World Projects", + desc: "Apply your learning immediately by building AI agents that solve real business challenges.", + icon: , + gradient: "from-purple-500 to-indigo-500" + }, + { + title: "Community & Support", + desc: "Join an exclusive network of solopreneurs who are as driven and innovative as you are.", + icon: , + gradient: "from-pink-500 to-rose-500" + } + ].map((item, index) => ( + + {/* Card Content */} +
+
{item.icon}
+
+

{item.title}

+

{item.desc}

+
+
+ + {/* Soft Glow Effect */} +
+ + ))} +
+ + + {/* Who Should Apply */} + +

Who Should Apply?

+

+ If you're a solopreneur with a passion for innovation and a drive to harness AI for your business, this program is for you. We welcome applicants from all industries—your background is not a barrier, but your ambition is the key to success. +

+ + {/* Infinite Soft Glow Effect */} + +
+ + {/* CTA */} + +

+ Ready to Transform Your Future? +

+ +

+ The future belongs to those who innovate. If you're ready to join an elite group of entrepreneurs and take your expertise to the next level with AI, apply now for our next cohort. + Less than 0.5% are selected to redefine the AI landscape—will you be one of them? +

+ + + Apply Now + + {/* Soft Glow Effect on Hover */} + + +
+
+
+ ); +}; + +export default AIProgramCard; \ No newline at end of file diff --git a/app/hr/page.tsx b/app/hr/page.tsx new file mode 100644 index 0000000..0577709 --- /dev/null +++ b/app/hr/page.tsx @@ -0,0 +1,368 @@ +"use client"; + +import React from 'react'; +import Navbar from '@/components/Navbar/navbar'; +import Footer from "@/components/footer"; +import { HoverEffect } from '@/components/ui/card-hover-effect'; +import { Marquee } from '@/components/ui/marquee'; +import { TextGenerateEffect } from "@/components/ui/text-generate-effect"; +import { FaListUl, FaSearch, FaArrowsAlt, FaRegFileAlt, FaCalendarAlt, FaChartLine, + FaTasks, FaUsers, FaCog, FaRocket, FaLightbulb, FaDatabase, FaUserPlus, FaSitemap } from 'react-icons/fa'; //Added FaUserPlus and FaSitemap +import { OrbitingCircles } from '@/components/magicui/orbiting-circles'; + +const heading = "Strategic HR Teams Employ Everyday to Foster High-Performing Teams"; // Changed Heading +const description = "Oversee recruiting pipeline, streamline your onboarding processes, and maintain team alignment as your company evolves."; // Changed Description + +const features = [ + { + head: "Streamline New Hire Onboarding", // Changed head + desc: "Establish a single source of truth for your HR policies. Organize and update HR information and resources in one place.", // Changed desc + button: "Explore tools", + buttonColor: "sky-200", + image: "https://res.cloudinary.com/zapier-media/image/upload/q_auto/f_auto/v1727809087/Solutions/Marketing/marketing-lp_01_slh5ws.png", + link: "#", + icon: // Changed Icon + }, + { + head: "Maintain Team Alignment Throughout Hiring", // Changed head + desc: "Collaborate on hiring plans, interview requirements, and more to attract and hire top talent.", // Changed desc + button: "Get started", + buttonColor: "purple-300", + image: "https://res.cloudinary.com/zapier-media/image/upload/q_auto/f_auto/v1727809087/Solutions/Marketing/marketing-lp_02_ivu6pd.png", + link: "#", + icon: // Changed Icon + }, + { + head: "Establish a Single Source of Truth for HR", // Changed head + desc: "Organize and update all your HR information and resources in one place, so your team can access what they need.", // Changed desc + button: "Unlock now", + buttonColor: "amber-200", + image: "https://res.cloudinary.com/zapier-media/image/upload/q_auto/f_auto/v1727809091/Solutions/Marketing/marketing-lp_04_liatuw.png", + link: "#", + icon: // Changed Icon + }, + { + head: "Visualize Your Organization", // Changed head + desc: "Visualize your org chart and personnel data to keep your entire company connected and adapt as your team evolves.", // Changed desc + button: "See demo", + buttonColor: "emerald-200", + image: "https://res.cloudinary.com/zapier-media/image/upload/q_auto/f_auto/v1727809091/Solutions/Marketing/marketing-lp_04_liatuw.png", + link: "#", + icon: // Changed Icon + }, + { + head: "Consolidate All Data in One Place", // Changed head + desc: "Integrate with existing tools, add apps to gain valuable insights, and write your own scripts to further customize your workflow.", // Changed desc + button: "Learn more", + buttonColor: "rose-200", + image: "https://res.cloudinary.com/zapier-media/image/upload/q_auto/f_auto/v1727809087/Solutions/Marketing/marketing-lp_02_ivu6pd.png", + link: "#", + icon: + }, + { + head: "Simplify HR Workflows", // Changed head + desc: "Manage everything from your candidate pipeline to your new hire onboarding with Everyday.", // Changed desc + button: "View details", + buttonColor: "blue-200", + image: "https://res.cloudinary.com/zapier-media/image/upload/q_auto/f_auto/v1727809087/Solutions/Marketing/marketing-lp_01_slh5ws.png", + link: "#", + icon: // Changed Icon + } +]; + +const whyEveryday = [ + { + title: "Perfect Fit for Strategic HR", // Changed title + description: "Everyday streamlines recruiting, onboarding, and team alignment, empowering HR to build high-performing teams efficiently.", // Changed Description + icon: + }, + { + title: "Streamline Onboarding", // Changed title + description: "Simplify the onboarding process for new hires, ensuring they have all the resources and information they need from day one.", // Changed Description + icon: + }, + { + title: "Visualize Your Organization", // Changed title + description: "Gain a comprehensive view of your organization with org charts and personnel data to adapt quickly as your team evolves.", // Changed Description + icon: // Changed Icon + }, + { + title: "Centralize HR Policies", // Changed title + description: "Establish a single source of truth for HR policies, making it easy for employees to access and stay informed.", // Changed Description + icon: + } +]; + +const detailedFeatures = [ + { + title: "Recruiting Pipeline Management", // Changed title + description: "Oversee the entire recruiting process from application to offer, ensuring a smooth and efficient experience.", // Changed Description + subFeature: "Track candidates, manage interviews, and streamline communication with potential hires.", // Changed subFeature + icon: // Changed Icon + }, + { + title: "Streamlined Onboarding", // Changed title + description: "Simplify the onboarding process with automated tasks, document management, and new hire resources.", // Changed Description + subFeature: "Ensure new hires are fully equipped and integrated into the team from day one.", // Changed subFeature + icon: + }, + { + title: "HR Knowledge Base", // Changed title + description: "Create a centralized repository for all HR policies, procedures, and employee resources.", // Changed Description + subFeature: "Make it easy for employees to find the information they need, when they need it.", // Changed subFeature + icon: + }, + { + title: "Team Alignment and Collaboration", // Changed title + description: "Foster collaboration and alignment across teams with tools for communication, goal setting, and performance tracking.", // Changed Description + subFeature: "Keep everyone on the same page and working towards common objectives.", // Changed subFeature + icon: + } +]; + +const words = `"Everyday has revolutionized our HR processes. From streamlining onboarding to ensuring team alignment, it's the perfect solution for building a high-performing organization."`; // Changed Testimonial + +export default function HRHub() { // Changed function name + return ( +
+ + + {/* Hero Section */} +
+
+

+ {heading} +

+

+ {description} +

+
+ + +
+
+
+
+
+
+ {/* Integration Hub */} +
+
+
+ + + + + + + + + + + + + +
+
+

+ Connect Your HR Tools +

+

+ With Everyday, you can easily connect and synchronize data from your HRIS, applicant tracking systems, performance management platforms, and more, creating a comprehensive and efficient workflow tailored to your HR team's needs. +

+ +
+
+
+ + {/* Why Everyday Section */} +
+
+

+ Why Everyday is the Perfect Fit for HR Teams +

+
+ {whyEveryday.map((item, index) => ( +
+
{item.icon}
+

{item.title}

+

{item.description}

+
+ ))} +
+
+
+ + {/* Features Grid */} +
+
+

All Features

+

+ Everything you need to optimize your HR workflows in one powerful platform +

+
+ {features.map((feature, index) => ( +
+
{feature.icon}
+

{feature.head}

+

{feature.desc}

+ + {feature.button} + +
+ ))} +
+
+
+ + {/* Testimonial */} +
+
+
+ ★★★★★ +
+ +

— Michael Scott, Regional Manager

+
+
+ + {/* Detailed Features */} +
+
+

+ Powerful Features for Modern HR Teams +

+
+ {detailedFeatures.map((feature, index) => ( +
+
{feature.icon}
+
+

{feature.title}

+

{feature.description}

+
+

{feature.subFeature}

+
+
+
+ ))} +
+
+
+ + {/* Use Cases Section - Replacing Marketplace */} +
+
+

+ Manage Your Crucial HR Workflows +

+

+ Manage everything from your candidate pipeline to your new hire onboarding with Everyday. Kickstart with pre-made templates, and customize them to fit your exact needs. +

+
+ {/* Example Use Cases - Adapt Icons and Descriptions Accordingly */} +
+ +

Applicant Tracker

+

Efficiently track and manage job applicants from initial application to offer.

+ + Explore + +
+
+ +

HR Knowledge Base

+

Create a centralized and easily accessible repository for all HR policies and resources.

+ + Explore + +
+
+ +

Employee Onboarding

+

Streamline the onboarding process for new hires with automated tasks and document management.

+ + Explore + +
+
+
+
+ + {/* CTA Section */} +
+
+

+ Ready to Transform Your HR Workflow? +

+

+ Join HR teams who have revolutionized their processes with Everyday. +

+
+ + +
+
+
+ +
+
+ ); +} + +const Icons = { + salesforce: () => ( + + + + + + + + ), + hubspot: () => ( + + + + + + + + + ), + slack: () => ( + + + + + + + + + + + ), + zoom: () => ( + + + + + ), + linkedin: () => ( + + + + + + + ), + }; \ No newline at end of file diff --git a/app/marketplace/page.tsx b/app/marketplace/page.tsx new file mode 100644 index 0000000..c6f0c3f --- /dev/null +++ b/app/marketplace/page.tsx @@ -0,0 +1,320 @@ +"use client"; +"use client"; + +import React from 'react'; +import { motion } from 'framer-motion'; +import { Code, Search, Upload, Lightbulb, Globe, CheckCircle, CreditCard, ArrowRight } from 'lucide-react'; +import Navbar from '@/components/Navbar/navbar'; +import Footer from '@/components/footer'; + +const AIMarketplace = () => { + + const buyerBenefits = [ + { + title: "Seamless Integration", + desc: "Easily download, deploy, or subscribe to the code that fits your needs, and start enhancing your operations immediately.", + icon: + }, + { + title: "Tailored for SMBs", + desc: "Explore solutions that simplify everyday tasks—from smart customer support to automated financial insights—ensuring that every tool is both practical and powerful.", + icon: + }, + { + title: "Secure & Reliable", + desc: "All our offerings are thoroughly vetted, ensuring you receive only the best and most secure AI solutions on the market.", + icon: + } + ]; + + const sellerBenefits = [ + { + title: "Effortless Listing", + desc: "Our streamlined process makes it simple to upload your code, set your subscription plans, and start selling without any hassle.", + icon: + }, + { + title: "Global Exposure", + desc: "Connect with SMBs and enterprises worldwide who are eager to integrate innovative AI solutions into their operations.", + icon: + }, + { + title: "Flexible Monetization", + desc: "Choose from various pricing models—one-time downloads, subscriptions, or even usage-based fees—to best suit your business and maximize revenue.", + icon: + } + ]; + + return ( +
+ + + {/* Hero Section */} + + {/* Animated Gradient Background */} + + +
+ + AI + + {" "}Marketplace{" "} + + + +
+
+
+ + + Your One-Stop Hub for Ready-to-Go AI Solutions + + + + Discover a curated collection of innovative AI-powered apps and agents designed to streamline your business operations. Whether you’re looking to download, deploy, or subscribe to smart solutions, our marketplace is built to empower your growth—all at the click of a button. + +
+ + + {/* For Buyers Section */} + +

For Buyers: Instant Innovation

+

+ Unlock a world of possibilities with our ready-to-go apps and agents. Each solution is designed with simplicity and effectiveness in mind, so you can focus on what matters most—growing your business. +

+ +
+ {buyerBenefits.map((benefit, index) => ( +
+ {/* Icon + Title */} +
+
{benefit.icon}
+

{benefit.title}

+
+ + {/* Description */} +

{benefit.desc}

+ + {/* Soft Glow Effect */} +
+
+ ))} +
+ +
+ + Browse Solutions + + +
+ + + {/* For Sellers Section */} + +

For Sellers: Showcase & Monetize Your Innovations

+

+ Turn your creativity into recurring revenue by listing your AI apps and agents on our marketplace. Reach a global audience and let your solutions speak for themselves. +

+ +
+ {sellerBenefits.map((benefit, index) => ( +
+ {/* Icon + Title */} +
+
{benefit.icon}
+

{benefit.title}

+
+ + {/* Description */} +

{benefit.desc}

+ + {/* Soft Glow Effect */} +
+
+ ))} +
+ +
+ + List Your Product + + +
+ + + {/* How It Works Section */} + +

How It Works

+ +
+ {/* Buyers */} +
+

For Buyers:

+
    +
  • + + Discover: Browse our extensive library of AI solutions. +
  • +
  • + + Deploy: Download or subscribe to the code with a few simple clicks. +
  • +
  • + + Transform: Integrate the solution into your business and experience the benefits immediately. +
  • +
+ + {/* Soft Glow Effect */} +
+
+ + {/* Sellers */} +
+

For Sellers:

+
    +
  • + + List: Upload your ready-to-go app or agent, and choose your pricing model. +
  • +
  • + + Promote: Leverage our global platform to showcase your innovation. +
  • +
  • + + Profit: Monetize your expertise and watch your revenue grow with every subscription or download. +
  • +
+ + {/* Soft Glow Effect */} +
+
+
+ + + {/* Why Choose Our Marketplace Section */} + +

Why Choose Our Marketplace?

+
    + {[ + { icon: , title: "Curated Quality", desc: "Every solution is handpicked and continuously updated to ensure peak performance and security.", color: "from-green-500 to-emerald-500" }, + { icon: , title: "Ease of Use", desc: "Designed for both buyers and sellers, our intuitive interface makes finding and listing products a breeze.", color: "from-yellow-500 to-orange-500" }, + { icon: , title: "Comprehensive Support", desc: "Access detailed documentation, tutorials, and dedicated support to help you get the most out of our platform.", color: "from-blue-500 to-cyan-500" }, + { icon: , title: "Community-Driven", desc: "Join a thriving ecosystem of innovators and forward-thinking businesses ready to redefine their industries with AI.", color: "from-purple-500 to-indigo-500" } + ].map((item, index) => ( +
  • + {/* Icon */} + {item.icon} + + {/* Text Content */} +
    +

    {item.title}

    +

    {item.desc}

    +
    + + {/* Soft Glow Effect */} +
    +
  • + ))} +
+
+ + {/* Final CTA Section */} + +

Embrace the future of AI-powered business solutions.

+

Whether you’re here to discover cutting-edge apps or to share your innovations with the world, our marketplace is your launchpad for success.

+ +
+ + Browse Solutions + + + + List Your Product + + +
+
+ +
+
+ ); +}; + +export default AIMarketplace; diff --git a/app/micro-saas/how-it-works.jsx b/app/micro-saas/how-it-works.jsx new file mode 100644 index 0000000..fa2dded --- /dev/null +++ b/app/micro-saas/how-it-works.jsx @@ -0,0 +1,73 @@ +import React, { useState, useEffect } from 'react'; +import { motion, useAnimation } from 'framer-motion'; + +const Step = ({ step, index, isActive }) => { + const controls = useAnimation(); + + useEffect(() => { + if (isActive) { + controls.start({ opacity: 1, x: 0 }); + } else { + controls.start({ opacity: 0.5, x: -20 }); + } + }, [isActive, controls]); + + return ( + +
+ {index + 1} +
+
+

{step.title}

+

{step.description}

+ {/* Optional Call-to-action or additional details */} + {/* + + */} +
+
+ ); +}; + +const HowItWorks = ({ steps }) => { + const [activeStep, setActiveStep] = useState(0); + const containerRef = React.createRef(); + + // Optional Progress Bar for Steps + // You can implement this as a separate component or inline here. + + return ( +
+ + {/* Title Section */} +

How It Works

+ + {/* Steps Container */} +
+ {steps.map((step, index) => ( + setActiveStep(index)} // Change active step on hover + onMouseLeave={() => setActiveStep(0)} // Reset to first step when not hovering + > + {/* Render the Step Component here */} + + + ))} +
+ +
+ ); +}; + +export default HowItWorks; diff --git a/app/micro-saas/page.tsx b/app/micro-saas/page.tsx new file mode 100644 index 0000000..af3ded0 --- /dev/null +++ b/app/micro-saas/page.tsx @@ -0,0 +1,306 @@ +"use client"; + +import React, { useState } from 'react'; +import { motion } from 'framer-motion'; +import { ChevronDown, ChevronUp, Code, Users, CreditCard, BarChart, Share } from 'lucide-react'; +import Navbar from '@/components/Navbar/navbar'; +import HowItWorks from './how-it-works'; +import Footer from '@/components/footer'; + +const MicroSAASLanding = () => { + const [expandedIndex, setExpandedIndex] = useState(null); + const [expandedFaq, setExpandedFaq] = useState(null); + + const features = [ + { + icon: , + title: "No-Code, Fast Deployment", + description: "Our drag-and-drop builder allows you to convert your services into an AI-powered solution in minutes—no technical skills required.", + gradient: "from-pink-500/20 to-purple-500/20" + }, + { + icon: , + title: "Monetization Made Simple", + description: "Integrate subscription billing and unlock recurring revenue streams from day one.", + gradient: "from-blue-500/20 to-cyan-500/20" + }, + { + icon: , + title: "Community-Centric Growth", + description: "Build and nurture a dedicated community around your MicroSAAS, boosting customer loyalty and creating opportunities for upselling.", + gradient: "from-green-500/20 to-emerald-500/20" + }, + { + icon: , + title: "All-in-One Platform", + description: "Manage your AI agents, community interactions, and monetization strategies from a single, easy-to-use dashboard.", + gradient: "from-orange-500/20 to-yellow-500/20" + } + ]; + + const steps = [ + { + title: "Convert Your Expertise", + description: "Use our intuitive no-code tools to transform your existing service into a fully functional AI agent." + }, + { + title: "Launch Your MicroSAAS", + description: "Deploy your AI agent with integrated subscription management and analytics." + }, + { + title: "Grow Your Community", + description: "Engage your audience with community forums, newsletters, and in-app engagement tools." + } + ]; + + const testimonials = [ + { + quote: "I turned my consulting expertise into an AI-powered MicroSAAS, and my community has grown exponentially.", + author: "Samantha T.", + role: "Business Strategist" + }, + { + quote: "The no-code builder made it incredibly easy to launch my MicroSAAS. Now, I generate consistent revenue through my engaged community.", + author: "Marcus L.", + role: "Digital Marketer" + } + ]; + + const faqs = [ + { + question: "What exactly is a MicroSAAS?", + answer: "A MicroSAAS is a lean, specialized software service delivered on a subscription basis, often powered by AI to automate tasks and provide personalized solutions." + }, + { + question: "Do I need technical skills to build my MicroSAAS?", + answer: "Not at all! Our platform is designed for non-technical users with an intuitive, drag-and-drop interface and comprehensive support resources." + }, + { + question: "How can I grow my community?", + answer: "Use our built-in community tools—forums, chat, newsletters—to engage your users, gather feedback, and offer premium content that drives loyalty and additional revenue." + } + ]; + + return ( +
+ + {/* Hero Section */} +
+
+

+ Build Your MicroSAAS & Grow Your Community +

+

+ Transform your expertise into a dynamic, AI-powered MicroSAAS and build a thriving community around your niche offering. Our platform equips you with everything you need—from a no-code builder to integrated community tools—to launch, grow, and monetize your MicroSAAS with ease. +

+
+ + +
+
+
+
+
+
+ + {/* What is MicroSAAS Section */} + +
+
+ + What Is MicroSAAS? + + + MicroSAAS is the next evolution in software services: a lean, hyper-focused, subscription-based solution that leverages AI to solve specific problems for targeted audiences. + +
+ + + {/* How it Works Section */} + {/*
+

How It Works

+
+ {steps.map((step, index) => ( + +
+ {index + 1} +
+
+

{step.title}

+

{step.description}

+
+
+ ))} +
+
*/} + + + + {/* Features Section */} +
+

Features

+

Everything You Need to Create, Manage, and Monetize Your AI Offerings

+ {features.map((vertical, index) => ( +
+ {/* Main row - always visible */} +
setExpandedIndex(expandedIndex === index ? null : index)} + > +
+ {/* Icon */} +
+ {vertical.icon} +
+ + {/* Title */} +

{vertical.title}

+ + {/* Expand/Collapse icon */} + +
+ + {/* Expanded content */} +
+
+
+ {vertical.description} +
+ + {/* Action button */} +
+ +
+
+
+
+
+ ))} +
+ + {/* Testimonials Section */} +
+

Success Stories

+
+ {testimonials.map((testimonial, index) => ( + +

"{testimonial.quote}"

+
+

{testimonial.author}

+

{testimonial.role}

+
+
+ ))} +
+
+ + {/* CTA Section */} +
+

Ready to Monetize Your Expertise?

+

+ Unlock the power of AI and community building to create a sustainable, recurring revenue model with your very own MicroSAAS. +

+ +
+ + {/* FAQ Section */} +
+

Frequently Asked Questions

+
+ {faqs.map((faq, index) => ( +
+ + {expandedFaq === index && ( + +

{faq.answer}

+
+ )} +
+ ))} +
+
+ +
+ +
+ ); +}; + +export default MicroSAASLanding; \ No newline at end of file diff --git a/app/sales/page.tsx b/app/sales/page.tsx index 6ceb549..9efe4ba 100644 --- a/app/sales/page.tsx +++ b/app/sales/page.tsx @@ -130,7 +130,7 @@ export default function SalesHub() { {/* Hero Section */}
-

+

{heading}

@@ -185,14 +185,14 @@ export default function SalesHub() { {/* Why Everyday Section */}
-

+

Why Everyday is the Perfect Fit for Sales Teams

{whyEveryday.map((item, index) => (
{item.icon}
-

{item.title}

+

{item.title}

{item.description}

))} @@ -203,7 +203,7 @@ export default function SalesHub() { {/* Features Grid */}
-

All Features

+

All Features

Everything you need to optimize your sales workflows in one powerful platform

@@ -211,7 +211,7 @@ export default function SalesHub() { {features.map((feature, index) => (
{feature.icon}
-

{feature.head}

+

{feature.head}

{feature.desc}

{feature.button} @@ -236,7 +236,7 @@ export default function SalesHub() { {/* Detailed Features */}
-

+

Powerful Features for Modern Sales Teams

@@ -244,7 +244,7 @@ export default function SalesHub() {
{feature.icon}
-

{feature.title}

+

{feature.title}

{feature.description}

{feature.subFeature}

@@ -259,7 +259,7 @@ export default function SalesHub() { {/* Marketplace Section */}
-

+

Start Swiftly with Everyday Marketplace

@@ -268,7 +268,7 @@ export default function SalesHub() {

{features.slice(0, 3).map((feature, index) => (
-

{feature.head}

+

{feature.head}

{feature.desc}

{feature.button} @@ -282,7 +282,7 @@ export default function SalesHub() { {/* CTA Section */}
-

+

Ready to Transform Your Sales Workflow?

diff --git a/app/services/page.tsx b/app/services/page.tsx new file mode 100644 index 0000000..e69de29 diff --git a/components/Hero/hero2.tsx b/components/Hero/hero2.tsx index a70815d..64020b6 100644 --- a/components/Hero/hero2.tsx +++ b/components/Hero/hero2.tsx @@ -67,7 +67,7 @@ const HeroCarousel = () => { return (

-
+
{/* Slides */}
{slides.map((slide, index) => ( diff --git a/components/Navbar/dropdowns.tsx b/components/Navbar/dropdowns.tsx index ea6384f..9e8dab4 100644 --- a/components/Navbar/dropdowns.tsx +++ b/components/Navbar/dropdowns.tsx @@ -7,7 +7,7 @@ import { GrTemplate } from 'react-icons/gr'; import { IoIosApps, IoIosDocument, IoIosMail, IoMdAnalytics, IoMdArrowRoundForward } from 'react-icons/io'; import { IoFlash, IoText } from 'react-icons/io5'; import { LuWorkflow } from 'react-icons/lu'; -import { MdSecurity, MdTranslate } from 'react-icons/md'; +import { MdAutoAwesome, MdSecurity, MdStore, MdTranslate } from 'react-icons/md'; import { RiMoneyEuroBoxFill, RiProductHuntFill } from 'react-icons/ri'; import { VscTools } from 'react-icons/vsc'; @@ -74,6 +74,12 @@ const productItems = [ icon: , link: '/analytics-dashboard', }, + { + name: 'Micro-Saas', + description: 'Build Your MicroSAAS & Grow Your Community', + icon: , + link: '/micro-saas', + }, ], }, { @@ -230,6 +236,19 @@ const solutionItems: SolutionItem[] = [ icon: , link: '/security' }, + { + name: 'Marketplace', + description: 'Explore a wide range of AI-driven tools and solutions tailored for your business.', + icon: , + link: '/marketplace' + }, + { + name: 'GenAI Readiness Program', + description: 'Prepare your organization for the future with cutting-edge AI adoption strategies.', + icon: , + link: '/genai-readiness' + } + ], }, { diff --git a/components/Navbar/navbar.tsx b/components/Navbar/navbar.tsx index dbbf249..bdbf703 100644 --- a/components/Navbar/navbar.tsx +++ b/components/Navbar/navbar.tsx @@ -82,6 +82,8 @@ const Navbar: React.FC = () => { )} + +
  • AI Agents
  • {/* Hamburger Icon for Mobile View */}