"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 { TextGenerateEffect } from "@/components/ui/text-generate-effect"; import { FaVideo, FaRocket, FaLightbulb, FaChartLine, FaTasks, FaUsers, FaCog, FaCubes, FaNetworkWired } from 'react-icons/fa'; import { FaListCheck } from 'react-icons/fa6'; const heading = "Discover Everyday"; const description = "Experience the power of effortless AI creation and enterprise workflow optimization with Everyday. Our platform is designed to provide solutions that propel your business towards unprecedented efficiency and growth."; const demoExpectations = [ { title: "Drag-and-Drop AI Builder", description: "Experience the simplicity of our intuitive drag-and-drop AI builder that lets you create powerful workflows without writing a single line of code.", gradient: "from-sky-400 to-blue-600", icon: , }, { title: "Interactive AI Forms", description: "Learn how to convert complex AI workflows into simple, interactive forms that anyone in your organization can use.", gradient: "from-purple-400 to-pink-500", icon: , }, { title: "Marketplace Solutions", description: "Discover ready-to-use workflows and tools for various business units in our comprehensive marketplace, saving you valuable time and resources.", gradient: "from-indigo-400 to-violet-600", icon: , }, { title: "GoalGrid Integration", description: "Understand how to align your workflows with your organizational OKRs and KPIs using our powerful GoalGrid feature for measurable results.", gradient: "from-emerald-400 to-green-600", icon: , }, { title: "Seamless Connectivity", description: "Explore the potential of connecting Everyday with thousands of applications for effortless work processes across your entire tech stack.", gradient: "from-amber-400 to-orange-500", icon: , }, ]; const testimonialWords = `"Everyday is here to redefine how your business works. Request a personalized demo today and begin your journey towards a smarter, more efficient enterprise."`; export default function DemoPage() { return (
{/* Hero Section */}

{heading}

{description}

{/* Personalized Demo Section */}

Personalized Demo

Every organization is unique, and we appreciate that. Our experts are ready to provide a personalized demo that aligns with your business needs. Learn how you can implement and benefit from our range of features, including the drag-and-drop AI builder, input/output forms, GoalGrid, Marketplace, and expansive integrations.

{/* What to Expect Section */}

What To Expect

In our demo, you will experience the full power of Everyday's platform with features designed to transform your enterprise workflows.

{demoExpectations.map((item, index) => (
{/* Icon with Gradient */}
{item.icon}
{/* Content */}

{item.title}

{item.description}

{/* Soft Glow Effect */}
))}
{/* CTA Middle Section */}

Request A Demo

Let Everyday revolutionize your business operations. Experience a demo tailored to your enterprise needs. Make AI an everyday part of your business.

{/* Testimonial */}
★★★★★

— Enterprise Client

{/* Final CTA Section */}

Transform Your Enterprise Today

Join forward-thinking organizations that have revolutionized their workflows with Everyday's AI-powered platform.

); }