import {Footer, Navbar} from '../components'; import {motion} from 'framer-motion'; import {DASHBOARD_URI, LANDING_URI, WIKI_URI} from '../lib/constants'; import React from 'react'; import Artur from '../../public/assets/artur.png'; import Joe from '../../public/assets/joe.png'; import Noah from '../../public/assets/noah.png'; import Pierre from '../../public/assets/pierre.png'; import Jonni from '../../public/assets/jonni.png'; import Alisson from '../../public/assets/alisson.png'; import Image from 'next/image'; import Script from 'next/script'; import Link from 'next/link'; import { ArrowRight, BarChart3, Clock, Globe, Inbox, Lock, Mail, Megaphone, PackageOpen, Send, Shield, TrendingUp, User, Users, Workflow, } from 'lucide-react'; const testimonials = [ { testimonial: 'Transparent and intuitive UI, extremely easy setup & automation and great support.', author: 'Artur Czemiel', image: Artur, role: 'Founder at GraphQL Editor', }, { testimonial: 'Lots of care put into Plunk', author: 'Jonni Lundy', image: Jonni, role: 'Founding Operations Manager at Resend', }, { testimonial: "I've been using Plunk for building & sending out marketing emails and genuinely love it!", author: 'Joe Ashwell', image: Joe, role: 'Founder at UnwindHR', }, { testimonial: 'I loved the ease of use, beautiful UI and great UX. Everything simply works.', author: 'Alisson Leal', image: Alisson, role: 'Founder at Brapi', }, { testimonial: 'Simple to use, efficient and no regrets!', author: 'Noah Di Gesu', image: Noah, role: 'Founder at Smoothey', }, { testimonial: 'Clean design, easy to understand, fair pricing.', author: 'Pierre Jacquel', image: Pierre, role: 'Founder at Landingly', }, ]; const features = [ { icon: , title: 'Workflow Automation', description: 'Visual builder for complex email sequences with triggers, delays, and conditional logic. No code required.', }, { icon: , title: 'Dynamic Segments', description: 'Real-time audience segmentation based on contact data and behavior. Less noise, more signal.', }, { icon: , title: 'Campaign Management', description: 'Broadcast emails with scheduling and performance tracking. Send the right message at the right time.', }, { icon: , title: 'Analytics', description: 'Detailed metrics on opens, clicks, bounces, and conversions across campaigns.', }, { icon: , title: 'Inbound Email', description: 'Receive and process incoming emails with webhook notifications. Your inbox, automated.', }, { icon: , title: 'Custom Domains', description: 'Brand consistency with DKIM authentication and custom sending domains. Yes, even in Outlook.', }, ]; /** * */ export default function Index() { return ( <>