diff --git a/app/analytics-dashboard/page.tsx b/app/analytics-dashboard/page.tsx
new file mode 100644
index 0000000..df2adc1
--- /dev/null
+++ b/app/analytics-dashboard/page.tsx
@@ -0,0 +1,53 @@
+import React from 'react';
+import Navbar from '@/components/Navbar/navbar';
+import { Sparkles, Rocket, Clock } from 'lucide-react';
+
+export default function AnalyticsDashboard() {
+ return (
+
+ {/* Coming Soon Message */}
+
+
+
+
+
+
+
+
+
+
+ Something Awesome is Coming Soon!
+
+
+
+ We're building something magical for you. Stay tuned!
+
+
+
+
+
+ {[0, 1, 2, 3].map((dot) => (
+
+ ))}
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/app/click-video/layout.tsx b/app/click-video/layout.tsx
deleted file mode 100644
index 497ce03..0000000
--- a/app/click-video/layout.tsx
+++ /dev/null
@@ -1,45 +0,0 @@
-import type { Metadata } from "next";
-import { Geist, Geist_Mono } from "next/font/google";
-import { Poppins, Arimo, Outfit, Roboto } from 'next/font/google';
-import "../globals.css";
-
-const poppins = Poppins({
- weight: ['300', '400', '500', '600', '700'],
- subsets: ['latin'],
-});
-
-const arimo = Arimo({
- weight: ['400', '500', '600', '700'],
- subsets: ['latin'],
-});
-
-const geistSans = Geist({
- variable: "--font-geist-sans",
- subsets: ["latin"],
-});
-
-const geistMono = Geist_Mono({
- variable: "--font-geist-mono",
- subsets: ["latin"],
-});
-
-export const metadata: Metadata = {
- title: "Create Next App",
- description: "Generated by create next app",
-};
-
-export default function RootLayout({
- children,
-}: Readonly<{
- children: React.ReactNode;
-}>) {
- return (
-
-
- {children}
-
-
- );
-}
diff --git a/app/click-video/page.tsx b/app/click-video/page.tsx
index 6aaee77..a8e9e14 100644
--- a/app/click-video/page.tsx
+++ b/app/click-video/page.tsx
@@ -171,4 +171,4 @@ export default function Series() {
);
-}
+}
\ No newline at end of file
diff --git a/app/data-syncing/page.tsx b/app/data-syncing/page.tsx
new file mode 100644
index 0000000..77d2a3f
--- /dev/null
+++ b/app/data-syncing/page.tsx
@@ -0,0 +1,337 @@
+"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 = "Data Syncing - Keep Your Information Up-to-Date Across All Platforms";
+const description = "Effortlessly sync your data with Everyday. Our powerful data syncing capabilities ensure seamless updates between your apps, eliminating manual work and keeping everything in perfect harmony.";
+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: "Sync the apps you rely on",
+ desc: "Everyday supports over 100 data syncing connections, allowing you to keep your information accurate and updated across all platforms automatically.",
+ button: "Explore all sync options",
+ link: "#"
+ },
+ {
+ head: "Get started with pre-built sync templates",
+ desc: "Set up automated data syncing in just a few minutes and eliminate repetitive tasks to improve efficiency.",
+ 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: "Sync Your Data in One Place",
+ description:
+ "Eliminate data silos by keeping all your information synchronized in real time. Access a unified, accurate source of truth across all your tools.",
+ link: "https://stripe.com",
+ icon: FaListUl, // Add icon here
+ },
+ {
+ title: "Automate Data Transfers",
+ description:
+ "Ensure smooth data movement between your apps without manual intervention. Automatically sync records, trigger updates, and maintain accuracy effortlessly.",
+ link: "https://netflix.com",
+ icon: FaSearch, // Add icon here
+ },
+ {
+ title: "Enable Real-Time Collaboration",
+ description:
+ "Keep your team aligned with up-to-date information. By syncing communication tools, shared data stays accurate and accessible for everyone in your workspace.",
+ 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 = `"Our data syncing capabilities are constantly evolving, with new connections and enhancements regularly added to our platform - we're hustling."`
+
+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 && (
+ <>
+
+
+ {/* Add gradient effects for marquee */}
+
+
+ >
+ )}
+
+ {/* Conditional Rendering for GIF After Second Feature */}
+ {index === 1 && (
+
+
+
+ )}
+
+ ))}
+
+
+
+
+ {/* */}
+
+
+
+ ★★★★★
+
+
+ {/*
+ 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/fianance/page.tsx b/app/fianance/page.tsx
new file mode 100644
index 0000000..52cd588
--- /dev/null
+++ b/app/fianance/page.tsx
@@ -0,0 +1,337 @@
+"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 && (
+ <>
+
+
+ {/* Add gradient effects for marquee */}
+
+
+ >
+ )}
+
+ {/* Conditional Rendering for GIF After Second Feature */}
+ {index === 1 && (
+
+
+
+ )}
+
+ ))}
+
+
+
+
+
+
+
+
+ ★★★★★
+
+
+ {/*
+ 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/integrations/layout.tsx b/app/integrations/layout.tsx
deleted file mode 100644
index 497ce03..0000000
--- a/app/integrations/layout.tsx
+++ /dev/null
@@ -1,45 +0,0 @@
-import type { Metadata } from "next";
-import { Geist, Geist_Mono } from "next/font/google";
-import { Poppins, Arimo, Outfit, Roboto } from 'next/font/google';
-import "../globals.css";
-
-const poppins = Poppins({
- weight: ['300', '400', '500', '600', '700'],
- subsets: ['latin'],
-});
-
-const arimo = Arimo({
- weight: ['400', '500', '600', '700'],
- subsets: ['latin'],
-});
-
-const geistSans = Geist({
- variable: "--font-geist-sans",
- subsets: ["latin"],
-});
-
-const geistMono = Geist_Mono({
- variable: "--font-geist-mono",
- subsets: ["latin"],
-});
-
-export const metadata: Metadata = {
- title: "Create Next App",
- description: "Generated by create next app",
-};
-
-export default function RootLayout({
- children,
-}: Readonly<{
- children: React.ReactNode;
-}>) {
- return (
-
-
- {children}
-
-
- );
-}
diff --git a/app/integrations/page.tsx b/app/integrations/page.tsx
index eb9898b..52cd588 100644
--- a/app/integrations/page.tsx
+++ b/app/integrations/page.tsx
@@ -334,4 +334,4 @@ const Icons = {
/>
),
-};
+};
\ No newline at end of file
diff --git a/app/tools/page.tsx b/app/marketing/page.tsx
similarity index 50%
rename from app/tools/page.tsx
rename to app/marketing/page.tsx
index 8a15768..1e199fe 100644
--- a/app/tools/page.tsx
+++ b/app/marketing/page.tsx
@@ -2,31 +2,45 @@
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 { TextGenerateEffect } from '@/components/ui/text-generate-effect';
+import { OrbitingCircles } from '@/components/magicui/orbiting-circles';
-const heading = "Tools - Automate Task Sequences for Streamlined Workflows";
-const description = "A programmed tool designed to execute a predefined sequence of tasks systematically, automating workflows and minimizing manual intervention.";
-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 heading = "Everyday Marketing - Automate and optimize your marketing workflows";
+const description = "Everyday helps you streamline marketing automation by seamlessly connecting your tools, minimizing errors, and uncovering valuable insights from your data. Free up your team’s time and focus on creating high-impact campaigns.";
+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",
+ head: "Integrate AI into your marketing",
+ desc: "No matter how you use AI, Everyday’s growing app ecosystem makes it easy to incorporate AI into essential workflows like lead generation, marketing automation, and campaign management.",
+ 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: "#"
},
{
- 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",
+ head: "Let AI build your automations",
+ desc: "Describe the marketing automation you need—such as lead capture or email nurturing—and Everyday’s AI will generate a workflow tailored to your needs.",
+ 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: "#"
+ },
+ {
+ head: "Enhance workflows with AI-powered customization",
+ desc: "Fine-tune your marketing automation with AI-generated code snippets, giving you more control over customization without complex coding.",
+ 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: "#"
}
-]
+];
const images = [
"https://www.zarla.com/images/starbucks-logo-2400x2400-20220513.png?crop=1:1,smart&width=150&dpr=2",
@@ -39,49 +53,31 @@ const images = [
const contents = [
{
- title: "List",
+ title: "Unify Your Marketing Data",
description:
- "Our proven approach enhances operational efficiency, delivers faster results, and keeps your team ahead of the curve.",
+ "Eliminate data silos by centralizing insights from all your marketing tools. Get a complete view of your campaigns, leads, and performance metrics in one place.",
link: "https://stripe.com",
icon: FaListUl, // Add icon here
},
{
- title: "Assign/Complete",
+ title: "Automate Marketing Workflows",
description:
- "Assign a task to a team member, or do it on your own. Complete flow of tasks now at your fingertips without the hassle of assigning and reassigning and increasing due dates.",
- link: "https://cal.com",
+ "Boost efficiency by automating repetitive marketing tasks. Sync data, trigger personalized campaigns, and schedule actions—so you can focus on strategy and creativity.",
+ link: "https://netflix.com",
icon: FaSearch, // Add icon here
},
{
- title: "History",
+ title: "Enhance Team Collaboration",
description:
- "History captures tasks submitted by users, recording all associated data for reference. This way, you can go back and look at the progress so far.",
+ "Keep your marketing team aligned by integrating communication tools. Share updates, assign tasks, and track campaign progress effortlessly in one connected workspace.",
link: "https://enterprise.everydayseries.com/",
- icon: FaSearch, // Add icon here
+ icon: FaArrowsAlt, // Add icon here
},
];
-const featuresData = [
- {
- title: "Create Series using Drag and Drop",
- description: "Organize, connect, and track your goals using the GoalGrid. Stay aligned and in sync with your strategic objectives.",
- imgSrc: "https://res.cloudinary.com/dezd109fz/image/upload/v1737595526/Screenshot_2025-01-23_065418_xo3ezn.png",
- },
- {
- title: "Built for Enterprises",
- description: "Everyday platform ensures enterprise-grade deployment, security, and data governance, all with the simplicity of one centrally managed platform.",
- imgSrc: "https://res.cloudinary.com/dezd109fz/image/upload/v1737595526/Screenshot_2025-01-23_065356_gbkov8.png",
- },
- {
- title: "Integrate your Workflows",
- description: "Connect Everyday to your existing tools, integrate important business processes, and build more powerful applications.",
- imgSrc: "https://res.cloudinary.com/dezd109fz/image/upload/v1737595526/Screenshot_2025-01-23_065455_whfipm.png",
- },
-];
+const words = `“Stay ahead with evolving marketing automation—new features and integrations are constantly added to enhance your campaigns.”`
-const words = `Require a little more? We offer optional add-on services for developing even more solutions.`
-
-export default function Series() {
+export default function Integrations() {
return (
@@ -89,24 +85,32 @@ export default function Series() {
{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 */}
-
+
{features.map((item, index) => (
{/* Feature Heading and Description */}
{item.head}
{item.desc}
+
{item.button}
@@ -143,35 +147,25 @@ export default function Series() {
>
)}
-
- {/* Conditional Rendering for GIF After Second Feature */}
- {index === 1 && (
-
-
-
- )}
))}
-
+
+
+
★★★★★
-
- Add-On Professional Services
-
+ {/*
+ Magic Button: Simply press the magic button to instantly generate your series automatically.
+
*/}
-
-
);
}
+
diff --git a/app/not-found.jsx b/app/not-found.jsx
new file mode 100644
index 0000000..56a8eea
--- /dev/null
+++ b/app/not-found.jsx
@@ -0,0 +1,116 @@
+"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
+
+
+ );
+}
\ No newline at end of file
diff --git a/app/product-manager/page.tsx b/app/product-manager/page.tsx
new file mode 100644
index 0000000..12773f7
--- /dev/null
+++ b/app/product-manager/page.tsx
@@ -0,0 +1,171 @@
+"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 = "Everyday Product Management – Build, Iterate, and Deliver with Confidence";
+const description = "Everyday empowers product teams with seamless workflows, centralizing feedback, roadmaps, and sprints. Move beyond rigid tools—gain the flexibility to adapt and innovate faster, all while staying aligned with business objectives.";
+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: "Centralize and analyze customer feedback",
+ desc: "Gather insights from various channels and transform raw feedback into actionable data. Keep your team aligned with customer needs and prioritize effectively.",
+ 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: "#"
+ },
+ {
+ head: "Align initiatives and track progress",
+ desc: "Ensure every product initiative aligns with company goals. Use dashboards to track KPIs, monitor health, and maintain visibility across 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: "#"
+ },
+ {
+ head: "Compare planned vs. actual outcomes",
+ desc: "Keep your team agile with real-time tracking. Plan sprints, review milestones, and measure impact—all within Everyday’s interconnected workflows.",
+ 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: "#"
+ }
+];
+
+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 Product Feedback",
+ description:
+ "Break down silos by unifying customer feedback from multiple channels. Gain a complete understanding of user needs, feature requests, and pain points in one place.",
+ link: "https://stripe.com",
+ icon: FaListUl, // Add icon here
+ },
+ {
+ title: "Streamline Product Development",
+ description:
+ "Automate workflows across your product lifecycle. Connect insights, prioritize roadmaps, and track progress effortlessly—so your team can focus on building impactful features.",
+ link: "https://netflix.com",
+ icon: FaSearch, // Add icon here
+ },
+ {
+ title: "Align Teams with Shared Goals",
+ description:
+ "Keep product, engineering, and design teams on the same page. Plan sprints, track key results, and ensure every initiative contributes to your strategic vision.",
+ link: "https://enterprise.everydayseries.com/",
+ icon: FaArrowsAlt, // Add icon here
+ },
+];
+
+const words = `“Stay ahead with evolving product workflows—Everyday continuously introduces new features to enhance your development process.”`
+
+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.
+ Magic Button: Simply press the magic button to instantly generate your series automatically.
+
*/}
+
+
+
+
+
+ );
+}
+
diff --git a/app/sales/page.tsx b/app/sales/page.tsx
new file mode 100644
index 0000000..6ceb549
--- /dev/null
+++ b/app/sales/page.tsx
@@ -0,0 +1,353 @@
+"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 } from 'react-icons/fa';
+import { OrbitingCircles } from '@/components/magicui/orbiting-circles';
+
+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 features = [
+ {
+ 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:
+ },
+ {
+ 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:
+ },
+ {
+ 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:
+ }
+];
+
+const whyEveryday = [
+ {
+ 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.",
+ icon:
+ }
+];
+
+const words = `"Experience true versatility for sales teams. Everyday seamlessly integrates your sales roadmaps, customer feedback, and target schedules, keeping them perfectly aligned."`;
+
+export default function SalesHub() {
+ return (
+
+
+
+ {/* Hero Section */}
+
+
+
+ {heading}
+
+
+ {description}
+
+
+
+
+
+
+
+
+
+
+
+ {/* 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 */}
+
+
+
+ Why Everyday is the Perfect Fit for Sales Teams
+
+
+ {whyEveryday.map((item, index) => (
+
+
{item.icon}
+
{item.title}
+
{item.description}
+
+ ))}
+
+
+
+
+ {/* Features Grid */}
+
+
+
All Features
+
+ Everything you need to optimize your sales workflows in one powerful platform
+
+ 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.
+