diff --git a/app/ai-agents/page.tsx b/app/ai-agents/page.tsx index 129aaf2..187cdce 100644 --- a/app/ai-agents/page.tsx +++ b/app/ai-agents/page.tsx @@ -63,22 +63,26 @@ const ConversationalAIAgents = () => { { title: "Customer Support", desc: "Convert FAQs and troubleshooting guides into interactive chat agents that assist customers 24/7.", - icon: + icon: , + image: "https://images.unsplash.com/photo-1525182008055-f88b95ff7980?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NHx8Y2FsbCUyMHN1cHBvcnR8ZW58MHx8MHx8fDA%3D" }, { title: "Sales & Marketing", desc: "Engage prospects through conversational agents that guide them through product features and answer inquiries in real time.", - icon: + icon: , + image: "https://images.unsplash.com/photo-1560250056-07ba64664864?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8c2FsZXN8ZW58MHx8MHx8fDA%3D" }, { title: "HR & Administration", desc: "Streamline internal processes by turning routine HR queries and administrative tasks into dynamic, chat-driven workflows.", - icon: + icon: , + image: "https://images.unsplash.com/photo-1629904853716-f0bc54eea481?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTV8fG9mZmljZSUyMHdvcmt8ZW58MHx8MHx8fDA%3D" }, { title: "Project Management", desc: "Enhance team collaboration by using agents to manage tasks, gather feedback, and update project statuses interactively.", - icon: + icon: , + image: "https://plus.unsplash.com/premium_photo-1661277697952-0cacde72c755?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTN8fHByb2plY3QlMjBtYW5hZ2VtZW50fGVufDB8fDB8fHww" } ]; @@ -184,29 +188,37 @@ const ConversationalAIAgents = () => { - {/* Key Features Section */} + {/* Use Cases Section */} -

Key Features

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

Use Cases

+
+ {useCases.map((useCase, index) => (
-
- {feature.icon} + {/* Image */} +
{useCase.title}
+
+
{useCase.icon}
+

{useCase.title}

-
-

{feature.title}

-

{feature.desc}

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

{useCase.desc}

+ + {/* Soft Glow Effect with Different Colors */}
))} @@ -241,35 +253,29 @@ const ConversationalAIAgents = () => {
- {/* Use Cases Section */} + {/* Key Features Section */} -

Use Cases

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

Key Features

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

{useCase.title}

+
+ {feature.icon}
-

{useCase.desc}

- - {/* Soft Glow Effect with Different Colors */} +
+

{feature.title}

+

{feature.desc}

+
+ {/* Soft Glow Effect */}
))} diff --git a/app/not-found.jsx b/app/not-found.jsx deleted file mode 100644 index 56a8eea..0000000 --- a/app/not-found.jsx +++ /dev/null @@ -1,116 +0,0 @@ -"use client"; -import Link from 'next/link'; -import { useEffect, useState } from 'react'; -import { Home, Search, MoveLeft } from 'lucide-react'; - -export default function NotFound() { - const [isLoaded, setIsLoaded] = useState(false); - - useEffect(() => { - setIsLoaded(true); - }, []); - - return ( -
-
- {/* Animated 404 number */} -
-

- 404 -

-
-
-
-
- -
-
- - {/* Page not found message */} -

- Oops! Page Not Found -

- -

- The page you are looking for seems to have wandered off into the digital void. Let's guide you back to reality. -

- - {/* Animated dots - glowing effect */} -
- {[0, 1, 2, 3, 4].map((dot) => ( -
- ))} -
- - {/* Home link button - glowing effect */} - - - Return to Home - -
- - {/* Floating particles for atmosphere */} -
- {[...Array(20)].map((_, i) => ( -
- ))} -
- - {/* Add keyframes for floating animation */} - -
- ); -} \ No newline at end of file diff --git a/app/not-found.tsx b/app/not-found.tsx new file mode 100644 index 0000000..2f2ce8b --- /dev/null +++ b/app/not-found.tsx @@ -0,0 +1,172 @@ +import React from 'react'; +import Navbar from '@/components/Navbar/navbar'; +import { Sparkles, Rocket, Clock } from 'lucide-react'; + +export default function NotFound() { + return ( +
+ {/* Coming Soon Message */} + +
+
+ +
+ +
+
+ +

+ Something Awesome is Coming Soon! +

+ +

+ We're building something magical for you. Stay tuned! +

+ +
+ +
+ {[0, 1, 2, 3].map((dot) => ( +
+ ))} +
+
+ +
+ +
+
+
+
+
+
+ ); +} + +// THis is the not found page and above is the coming soon + +// "use client"; +// import Link from 'next/link'; +// import { useEffect, useState } from 'react'; +// import { Home, Search, MoveLeft } from 'lucide-react'; + +// export default function NotFound() { +// const [isLoaded, setIsLoaded] = useState(false); + +// useEffect(() => { +// setIsLoaded(true); +// }, []); + +// return ( +//
+//
+// {/* Animated 404 number */} +//
+//

+// 404 +//

+//
+//
+//
+//
+// +//
+//
+ +// {/* Page not found message */} +//

+// Oops! Page Not Found +//

+ +//

+// The page you are looking for seems to have wandered off into the digital void. Let's guide you back to reality. +//

+ +// {/* Animated dots - glowing effect */} +//
+// {[0, 1, 2, 3, 4].map((dot) => ( +//
+// ))} +//
+ +// {/* Home link button - glowing effect */} +// +// +// Return to Home +// +//
+ +// {/* Floating particles for atmosphere */} +//
+// {[...Array(20)].map((_, i) => ( +//
+// ))} +//
+ +// {/* Add keyframes for floating animation */} +// +//
+// ); +// } \ No newline at end of file diff --git a/app/services/page.tsx b/app/services/page.tsx index fed028e..733d95e 100644 --- a/app/services/page.tsx +++ b/app/services/page.tsx @@ -3,130 +3,87 @@ 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 } from 'react-icons/fa'; -import { OrbitingCircles } from '@/components/magicui/orbiting-circles'; +import { FaHandshake, FaLightbulb, FaChartLine, FaCogs, FaRocket } from 'react-icons/fa'; -const heading = "Everyday Sales - Optimize and Automate Your Sales Workflows"; -const description = "Bid farewell to inflexible systems. Everyday equips you with everything needed to power your sales engine, offering you full control to navigate it as you wish."; +const heading = "Our Team is Your Team"; +const description = "Achieve results quicker with support and collaboration from the Everyday Enterprise Services team."; -const features = [ +const servicesOverview = [ { - head: "Centralize and Analyze All Your Customer Feedback", - desc: "Accumulating your customers' insights in one platform ensures you're steering development in the right direction.", - 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: + title: "Our Established Approach for Transformation at Scale", + description: "Our Enterprise plan gives you exclusive access to services led by our experienced team. Our proven approach enhances operational efficiency, delivers faster results, and keeps your team ahead of the curve.", + icon: }, { - head: "Set Key Objectives and Align Teams", - desc: "An executive dashboard allows you to delve into Key Results. Monitor health, status, and related information like objectives or projects.", - 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: + title: "Transactions", + description: "Use and re-use responsive sections to create the perfect layout.", + icon: }, { - head: "Craft a Dynamic Sales Roadmap", - desc: "Create, manage, and deliver a sales roadmap that energizes your entire organization, yet is adaptable enough to adjust to unforeseen circumstances.", - 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: - }, - { - head: "Visualize and Interpret Trends", - desc: "Built-in reporting swiftly uncovers key insights and best practices, expediting action and elevating your processes.", - 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: "Manage Sales Cycles and Delivery", - desc: "Draw together product insights by consolidating all feedback—from every tool and source—into a single, accessible location.", - 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: "Establish a Unified Sales Roadmap", - desc: "Synchronize around a flexible, organization-wide roadmap. Customizable views allow every department to see their role.", - 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: + title: "Summaries", + description: "Use and re-use responsive sections to create the perfect layout.", + icon: } ]; -const whyEveryday = [ +const howItWorks = [ { - title: "Perfect Fit for Sales Teams", - description: "Everyday seamlessly integrates your sales roadmaps, customer feedback, and target schedules, keeping them perfectly aligned. With the right data at their fingertips, teams can concentrate on delivering exceptional sales results, quicker.", - icon: - }, - { - title: "Set Key Objectives and Align Teams", - description: "An executive dashboard allows you to delve into Key Results. Monitor health, status, and related information like objectives or projects.", - icon: - }, - { - title: "Craft a Dynamic Sales Roadmap", - description: "Create, manage, and deliver a sales roadmap that energizes your entire organization, yet is adaptable enough to adjust to unforeseen circumstances.", - icon: - }, - { - title: "Establish a Unified Sales Roadmap", - description: "Synchronize around a flexible, organization-wide roadmap. Customizable views allow every department to see their role, and plan accordingly.", - icon: - } -]; - -const detailedFeatures = [ - { - title: "Built-in Reporting for Key Insights", - description: "Built-in reporting swiftly uncovers key insights and best practices, expediting action and elevating your processes.", - subFeature: "Consolidate All Essential Data in One Place Integrate your crucial tools to bring more context into the sales process.", - icon: - }, - { - title: "Manage Sales Cycles and Delivery", - description: "Draw together product insights by consolidating all feedback—from every tool and source—into a single, accessible location.", - subFeature: "Ensure launches stay on course with comprehensive tracking and management.", - icon: - }, - { - title: "Centralize Customer Feedback", - description: "Accumulating your customers' insights in one platform ensures you're steering development in the right direction.", - subFeature: "Develop a feedback repository from every tool and source into a single, accessible location.", - icon: - }, - { - title: "Visualize and Interpret Trends", - description: "Plan and Prioritize as a Team. Stay on track with every initiative while maintaining a detailed view into OKRs.", - subFeature: "Interconnect across all teams with comprehensive data visualization tools.", + title: "Realize Your Vision", + description: "Design new solutions, or optimize existing ones, with our expertise. To help you deploy faster, our Enterprise plan gives you access to professional services like consultations and builds.", + button: "Explore Snippets", + link: "#", icon: } ]; -const words = `"Experience true versatility for sales teams. Everyday seamlessly integrates your sales roadmaps, customer feedback, and target schedules, keeping them perfectly aligned."`; +const addOnServices = [ + { + title: "Implementation Specialist", + description: "Customer base trainings and base build services only available to qualified customers as set forth on an applicable order form", + button: "Explore Free Trial", + link: "#", + image: "https://via.placeholder.com/400x300" + }, + { + title: "Foundation", + description: "A quick start for teams who have an established workflow. We'll work with you to create a prototype within 2 to 3 weeks.", + subFeatures: [ + "Discovery", + "Handoff training" + ] + }, + { + title: "Standard Build", + description: "For teams who have an established workflow, and want to invest 3+ weeks to design an Everyday solution.", + subFeatures: [ + "Everything in Foundation", + "Solution design", + "Feedback sessions" + ] + }, + { + title: "Advanced Build", + description: "Perfect for teams who want assistance defining their existing workflow and translating it into an Everyday solution.", + subFeatures: [ + "Everything in Standard", + "Workflow mapping" + ] + }, + { + title: "Custom Build", + description: "Offered to teams who want to collaborate on defining a more complex workflow and developing an integrated Everyday solution.", + subFeatures: [ + "Everything in Advanced", + "Tailored sessions" + ] + } +]; -export default function SalesHub() { +export default function ServicesPage() { return (
- + {/* Hero Section */}
@@ -138,10 +95,7 @@ export default function SalesHub() {
-
@@ -150,46 +104,14 @@ export default function SalesHub() {
- {/* Integration Hub */} -
-
-
- - - - - - - - - - - - - -
-
-

- Bring Your Sales Tools Together -

-

- With Everyday, you can easily connect and synchronize data from your CRM, email marketing platforms, sales enablement tools, and more, creating a comprehensive and efficient workflow tailored to your sales team's needs. -

- -
-
-
- - {/* Why Everyday Section */} + {/* Services Overview Section */}

- Why Everyday is the Perfect Fit for Sales Teams + Our Enterprise Services at a Glance

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

{item.title}

@@ -200,20 +122,20 @@ export default function SalesHub() {
- {/* Features Grid */} + {/* How Everyday Enterprise Services Works Section */}
-

All Features

+

How Everyday Enterprise Services Works

- Everything you need to optimize your sales workflows in one powerful platform + Some of our services are included with your Enterprise plan. You may also purchase add-on Professional Services as needed.

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

{feature.head}

-

{feature.desc}

- +

{feature.title}

+

{feature.description}

+
{feature.button}
@@ -222,132 +144,40 @@ export default function SalesHub() {
- {/* Testimonial */} -
-
-
- ★★★★★ -
- -

— Michael Scott, Regional Manager

-
-
- - {/* Detailed Features */} + {/* Add-On Professional Services Section */}

- Powerful Features for Modern Sales Teams -

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

{feature.title}

-

{feature.description}

-
-

{feature.subFeature}

-
-
-
- ))} -
-
-
- - {/* Marketplace Section */} -
-
-

- Start Swiftly with Everyday Marketplace + Add-On Professional Services

- Our ready-to-use sales workflows and tools assist in building workflows that link across your team and organization. Now, you can centralize customer feedback, track work to goals, plan sales cycles, and more. + Require a little more? We offer optional add-on services for developing even more solutions. Providing the best solution.

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

{feature.head}

-

{feature.desc}

- - {feature.button} - +
+ {addOnServices.map((service, index) => ( +
+ {service.image && {service.title}} +

{service.title}

+

{service.description}

+ {service.subFeatures && ( +
    + {service.subFeatures.map((feature, idx) => ( +
  • {feature}
  • + ))} +
+ )} + {service.button && ( + + {service.button} + + )}
))}
- {/* CTA Section */} -
-
-

- Ready to Transform Your Sales Workflow? -

-

- Join thousands of sales teams who have revolutionized their processes with Everyday. -

-
- - -
-
-
-
); } - -const Icons = { - salesforce: () => ( - - - - - - - - ), - hubspot: () => ( - - - - - - - - - ), - slack: () => ( - - - - - - - - - - - ), - zoom: () => ( - - - - - ), - linkedin: () => ( - - - - - - - ), -}; diff --git a/app/videos/page.tsx b/app/videos/page.tsx new file mode 100644 index 0000000..f7e7dca --- /dev/null +++ b/app/videos/page.tsx @@ -0,0 +1,165 @@ +import React from 'react'; +import Navbar from '@/components/Navbar/navbar'; +import Footer from "@/components/footer"; +import { + FaVideo, + FaChalkboardTeacher, + FaUsers, + FaNewspaper, + FaPlayCircle +} from 'react-icons/fa'; + +const heading = "Videos: Your Hub for AI Insights & Education"; +const description = "Explore in-depth tutorials, engaging panel discussions, and insightful conversations about our AI innovations."; + +const videoCategories = [ + { + title: "Tutorials & How-Tos", + description: "Learn how to convert your expertise into intelligent AI agents with our easy-to-follow video tutorials.", + icon: + }, + { + title: "Expert Conversations & Panels", + description: "Gain insights into emerging trends, strategic approaches, and the future of AI technology.", + icon: + }, + { + title: "Learning Resources", + description: "Access comprehensive videos documenting our product features, case studies, and success stories.", + icon: + } +]; + +const featuredContent = [ + { + title: "Webinars & Live Sessions", + description: "Join our live webinars to interact with experts, ask questions in real time, and explore deep dives into specific topics.", + button: "Upcoming Events", + link: "#", + icon: + } +]; + +const subscriptionOptions = [ + { + title: "Stay Connected", + description: "Subscribe to our video updates and marketing insights.", + button: "Subscribe Now", + link: "/pricing", + image: "https://via.placeholder.com/400x300" + }, + { + title: "Explore & Engage", + description: "Dive into our video content and unlock a world of knowledge.", + subFeatures: [ + "Build intelligent AI agents", + "Learn industry best practices", + "Stay ahead of AI trends" + ], + button: "Browse Videos", + link: "#" + } +]; + +export default function VideosPage() { + return ( +
+ + + {/* Hero Section */} +
+
+

+ {heading} +

+

+ {description} +

+
+ +
+
+
+
+
+
+ + {/* Video Categories Section */} +
+
+

+ What You'll Find +

+
+ {videoCategories.map((category, index) => ( +
+
{category.icon}
+

{category.title}

+

{category.description}

+
+ ))} +
+
+
+ + {/* Featured Content Section */} +
+
+

Live & Interactive Content

+

+ Engage directly with AI experts and stay updated with the latest insights and trends. +

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

{feature.title}

+

{feature.description}

+ + {feature.button} + +
+ ))} +
+
+
+ + {/* Subscription & Engagement Section */} +
+
+

+ Stay Connected & Informed +

+

+ Transform your expertise into intelligent AI agents with Everyday Series video resources. +

+
+ {subscriptionOptions.map((option, index) => ( +
+ {/* {option.image && {option.title}} */} +
+

{option.title}

+

{option.description}

+ {option.subFeatures && ( +
    + {option.subFeatures.map((feature, idx) => ( +
  • {feature}
  • + ))} +
+ )} +
+ + {option.button} + +
+ ))} +
+
+
+ +
+
+ ); +} \ No newline at end of file diff --git a/components/Companies/partners.tsx b/components/Companies/partners.tsx index 74f115f..2a5ef01 100644 --- a/components/Companies/partners.tsx +++ b/components/Companies/partners.tsx @@ -56,7 +56,7 @@ export function Partners() { key={index} src={img} alt={`Avatar ${index + 1}`} - className="h-32 w-32 rounded-full object-cover" + className="h-32 w-32 rounded-md object-scale-down" /> ))}
@@ -78,7 +78,7 @@ export function Partners() { key={index} src={img} alt={`Avatar ${index + 1}`} - className="h-32 w-32 rounded-full object-cover" + className="h-32 w-32 rounded-md object-scale-down" /> ))}
diff --git a/components/Features/features-bento.tsx b/components/Features/features-bento.tsx index 8e45ab5..f6be88f 100644 --- a/components/Features/features-bento.tsx +++ b/components/Features/features-bento.tsx @@ -4,8 +4,10 @@ import React, { useState, useEffect } from "react"; import { BentoGrid, BentoGridItem } from "../ui/bento-grid"; import { IconBoxAlignRightFilled, + IconChartBar, IconClipboardCopy, IconFileBroken, + IconPencil, IconSignature, IconTableColumn, } from "@tabler/icons-react"; @@ -94,86 +96,26 @@ const SkeletonOne = () => { className="h-2 w-32 bg-gradient-to-r from-blue-500 to-purple-500 rounded-full mt-4" animate={{ width: isHovered ? "40%" : "8rem" }} /> - - Learn more - + - → - - + Learn more + + → + + +
{/* Drag and drop animation container */}
{/* Drop zone */} - - - Drop here - - - - {/* File being dragged */} - - {/* File icon */} -
-
-
- WORKFLOW -
-
- - Drag me - -
- - {/* Success checkmark that appears after drop */} - - - - - +
); @@ -212,51 +154,94 @@ const SkeletonThree = () => { }; const SkeletonFour = () => { - return ( - -
- - -
- - - - Form Builder -
-
- - - -
- - - - Newsletter Creator -
-
-
-
- ); + return ( + + + {/* First item - initially visible */} + + +
+ + + + Form Builder +
+
+ + {/* Second item - initially visible */} + + +
+ + + + Newsletter Creator +
+
+ + {/* Third item - revealed on hover */} + + +
+ + + + Content Editor +
+
+ + {/* Fourth item - revealed on hover */} + + +
+ + + + Analytics Dashboard +
+
+
+
+ ); }; diff --git a/components/Features/features.tsx b/components/Features/features.tsx index 82e5a26..4ae0ca9 100644 --- a/components/Features/features.tsx +++ b/components/Features/features.tsx @@ -431,21 +431,25 @@ const defaultFeaturesData = [ { title: "No-Code AI Builder", description: "Design, test, and deploy AI agents effortlessly. Create powerful AI applications without any coding knowledge required.", + link: "/series", vector: , }, { title: "Creative Suite", description: "Access powerful forms, video editing, and content creation tools to bring your vision to life. Transform your ideas into polished, professional content.", + link: "/tools", vector: , }, { title: "Community & Marketplace", description: "Grow your audience on your own platform or join our marketplace to reach thousands of SMBs. Build and nurture your community while expanding your reach.", + link: "/marketplace", vector: , }, { title: "Subscription-Based Monetization", description: "Generate recurring revenue with our seamless subscription integration. Turn your AI solutions into a sustainable business model.", + link: "/pricing", vector: , }, ]; @@ -453,6 +457,7 @@ const defaultFeaturesData = [ interface Feature { title: string; description: string; + link: string; vector: React.ReactNode; } @@ -485,13 +490,15 @@ export default function Features({ featuresData }: { featuresData?: Feature[] })

{feature.title}

{feature.description}

- - Learn More - + + + Learn More + +
diff --git a/components/Hero/hero2.tsx b/components/Hero/hero2.tsx index 1e1c125..1b9c4ff 100644 --- a/components/Hero/hero2.tsx +++ b/components/Hero/hero2.tsx @@ -8,7 +8,7 @@ const slides = [ title: "Turn Your Expertise into Intelligent AI Agents", description: "Effortlessly convert your existing services into AI-powered agents. Empower your business with innovative, interactive tools that open new revenue streams.", buttonText: "Get Started Today", - buttonLink: "#", + buttonLink: "/ai-agents", image: "https://images.unsplash.com/photo-1600880292203-757bb62b4baf?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", overlayClass: "bg-black/60" // Semi-transparent overlay for better text readability }, @@ -16,7 +16,7 @@ const slides = [ title: "Design Without Coding", description: "Leverage our drag-and-drop builder to create custom AI solutions—no programming skills required. Your ideas, our platform, endless possibilities.", buttonText: "Explore the Builder", - buttonLink: "#", + buttonLink: "/series", image: "https://images.unsplash.com/photo-1531497865144-0464ef8fb9a9?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", overlayClass: "bg-black/60" }, @@ -24,7 +24,7 @@ const slides = [ title: "Unleash Your Creative Potentialr", description: "From forms and video editing to AI writing and newsletters, our fully integrated creative suite brings your vision to life with the power of AI.", buttonText: "Discover Our Tools", - buttonLink: "#", + buttonLink: "/tools", image: "https://images.unsplash.com/photo-1603201667141-5a2d4c673378?q=80&w=1796&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", overlayClass: "bg-black/60" }, @@ -32,7 +32,7 @@ const slides = [ title: "Monetize Your Skills & Services", description: "Build your own community or tap into our marketplace to sell AI-powered subscriptions to SMBs. Turn your expertise into a recurring revenue engine.", buttonText: "Learn How to Monetize", - buttonLink: "#", + buttonLink: "/marketplace", image: "https://plus.unsplash.com/premium_photo-1661338826350-49e4fd1b004e?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", overlayClass: "bg-black/60" }, @@ -40,7 +40,7 @@ const slides = [ title: "Step Into the Future of Business", description: "Embrace the next era of innovation. Transform, scale, and thrive with our AI-powered platform that adapts to your business needs.", buttonText: "Start Your Free Trial", - buttonLink: "#", + buttonLink: "/pricing", image: "https://plus.unsplash.com/premium_photo-1661425631372-6f9530fc211f?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D", overlayClass: "bg-black/60" } diff --git a/components/Newsletter/newsletter.tsx b/components/Newsletter/newsletter.tsx index 87a422e..375c12b 100644 --- a/components/Newsletter/newsletter.tsx +++ b/components/Newsletter/newsletter.tsx @@ -3,7 +3,7 @@ import { Faces } from './faces'; export function Newsletter() { return ( -
+
{/*