File size: 59,315 Bytes
c09f67c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 | "use client";
import { cn } from "@midday/ui/cn";
import { Icons } from "@midday/ui/icons";
import { motion } from "motion/react";
import Image from "next/image";
import Link from "next/link";
import { useRouter } from "next/navigation";
import { useCallback, useEffect, useRef, useState } from "react";
import { HeaderIntegrationsPreview } from "./header-integrations-preview";
import type { Testimonial } from "./sections/testimonials-section";
import { defaultTestimonials } from "./sections/testimonials-section";
// All testimonials for header rotation (includes default + new ones)
const headerTestimonials: Testimonial[] = [
...defaultTestimonials,
{
name: "Vitalie Rosescu",
title: "",
company: "Awwwocado",
country: "Netherlands",
image: "/stories/vitalie.jpg",
content:
"All in one platform for freelancers looking to create clear insights on income and expenses.",
fullContent:
"Company\nAwwwocado is a Webflow development business.\n\nChallenge\nWhat I lacked in other software is the overview of which invoices were paid and which were pending, and seeing my overall income. Existing tools didn't give a clear picture of finances.\n\nImpact\nHaving a clear overview of income, invoices, and expenses in one place made managing the business much easier.\n\nFavorite features\nInvoices, because it's a big time saver.\nA clean share link for customers is very nice.\nExpenses being taken from my inbox and being able to upload expenses is a huge one.\nThe invoice template is clean out of the box and very customizable.",
},
{
name: "Nick Speer",
title: "",
company: "Speer Technologies",
country: "United States",
image: "/stories/speer.jpeg",
content:
"Midday is bookkeeping software without the fluff. It's a ledger with modern tooling and integrations.",
fullContent:
"Company\nSpeer Technologies is an AI consulting firm in the US. We accelerate our clients' AI initiatives from problem discovery to production across industries including Finance, Healthcare, and Defense.\n\nChallenge\nI was spending too much time on weekends cleaning up my books, juggling invoices, and clicking around clunky software. It felt like another job, and the other solutions didn't work the way I wanted.\n\nImpact\nAfter switching from QuickBooks to Midday, it felt like I was in control of my books. I could see every transaction and expense as it came in and manage it without feeling overwhelmed.\n\nFavorite features\nAuto-categorization is far better than other programs, which saves time from manually organizing books. From there, I can export data and get insights into exact spending categories.",
},
{
name: "Ivo Dukov",
title: "",
company: "Smarch",
country: "Bulgaria",
content:
"Everything lives in one place now — customers, invoices, documents, and financial analytics.",
fullContent:
"Company\nSmarch is a software development agency specializing in e-commerce, web applications, and custom backend systems.\n\nChallenge\nBefore Midday, I was manually creating PDF invoices, piecing together bank reports to understand how the company was doing, and collecting financial documents every time accounting needed something. It was scattered and tedious.\n\nImpact\nEverything lives in one place now. I set up invoice templates once, have all clients organized, get real analytics on company performance, and keep documents in a proper vault. What used to take hours of admin work is now streamlined and mostly automatic.\n\nFavorite features\nInvoice templates. They eliminate repetitive work when billing multiple clients.",
},
{
name: "Ciarán Harris",
title: "",
company: "CogniStream",
country: "Ireland",
image: "/stories/ciaran.jpeg",
content:
"Financial admin stopped being a source of friction. Midday actually works the way you'd expect modern software to work.",
fullContent:
"Company\nCogniStream is an AI-moderated qualitative research platform. We have natural voice conversations with customers, analyse not just what they say but how they feel when they say it, and help businesses make confident decisions faster. I'm Ciarán Harris, CEO and Co-Founder, a two-time founder with over 25 years of research experience for global giants.\n\nChallenge\nI tried using Xero. It couldn't connect to my bank account reliably, the interface felt like it hadn't been updated in a decade, and just getting up and running was painful. It never worked out of the box. The real kicker? My accountant also used Xero, but he preferred I send him everything as a CSV anyway. That completely negated the point. As a founder, you need financial admin to just work so you can focus on building the business. It wasn't working.\n\nImpact\nFinancial admin stopped being a source of friction. Midday actually works the way you'd expect modern software to work. I check in every few days to keep on top of things, and every few weeks I'll do a more involved session to get through receipt scanning and matching ahead of VAT returns. It removed the single biggest pain point from my week-to-week financial admin, and everything else it does is a genuinely useful bonus on top of that.\n\nFavorite features\nReceipt scanning and matching, without question. That's the feature that removes the most friction from running the business day to day. Before, receipts were scattered and matching them to transactions was tedious. Now it's handled. That one feature alone justified the switch. The AI assistant is a nice bonus too, being able to ask a natural language question about your finances and get detailed results is genuinely useful.",
},
];
interface HeaderProps {
transparent?: boolean;
hideMenuItems?: boolean;
}
// Feature pages to prefetch on hover
const FEATURE_ROUTES = [
"/assistant",
"/insights",
"/transactions",
"/inbox",
"/time-tracking",
"/invoicing",
"/customers",
"/file-storage",
"/pre-accounting",
];
// App pages to prefetch on hover
const APP_ROUTES = ["/integrations", "/download", "/docs", "/mcp"];
export function Header({
transparent = false,
hideMenuItems = false,
}: HeaderProps) {
const router = useRouter();
const [isMenuOpen, setIsMenuOpen] = useState(false);
const [isFeaturesOpen, setIsFeaturesOpen] = useState(false);
const [isAppsOpen, setIsAppsOpen] = useState(false);
const [isMobileFeaturesOpen, setIsMobileFeaturesOpen] = useState(false);
const [isMobileAppsOpen, setIsMobileAppsOpen] = useState(false);
const [visibleIntegrations, setVisibleIntegrations] = useState<
Array<{ id: number; key: string }>
>([]);
const [featuresDropdownHeight, setFeaturesDropdownHeight] = useState<
number | null
>(null);
const featuresTimeoutRef = useRef<NodeJS.Timeout | null>(null);
const appsTimeoutRef = useRef<NodeJS.Timeout | null>(null);
const integrationKeyCounterRef = useRef(0);
const featuresListRef = useRef<HTMLDivElement>(null);
const preAccountingRef = useRef<HTMLAnchorElement>(null);
const appsListRef = useRef<HTMLDivElement>(null);
const macAppRef = useRef<HTMLAnchorElement>(null);
const integrationsAppRef = useRef<HTMLAnchorElement>(null);
const headerRef = useRef<HTMLDivElement>(null);
const featuresPrefetched = useRef(false);
const appsPrefetched = useRef(false);
const [currentTestimonialIndex, setCurrentTestimonialIndex] = useState(0);
// Prefetch feature pages on hover (only once)
const prefetchFeatures = useCallback(() => {
if (featuresPrefetched.current) return;
featuresPrefetched.current = true;
for (const route of FEATURE_ROUTES) {
router.prefetch(route);
}
}, [router]);
// Prefetch app pages on hover (only once)
const prefetchApps = useCallback(() => {
if (appsPrefetched.current) return;
appsPrefetched.current = true;
for (const route of APP_ROUTES) {
router.prefetch(route);
}
}, [router]);
// All non-ERP integrations
const allIntegrations = [
{ src: "/images/gmail.svg", alt: "Gmail" },
{ src: "/images/slack.svg", alt: "Slack" },
{ src: "/images/stripe.svg", alt: "Stripe" },
{ src: "/images/gdrive.svg", alt: "Google Drive" },
{ src: "/images/outlook.svg", alt: "Outlook" },
{ src: "/images/whatsapp.svg", alt: "WhatsApp" },
{ src: "/images/dropbox.svg", alt: "Dropbox" },
];
// Initialize with 4 random integrations
useEffect(() => {
if (isAppsOpen && visibleIntegrations.length === 0) {
const shuffled = [...allIntegrations.keys()].sort(
() => Math.random() - 0.5,
);
setVisibleIntegrations(
shuffled.slice(0, 4).map((idx) => ({
id: idx,
key: `init-${integrationKeyCounterRef.current++}`,
})),
);
}
}, [isAppsOpen]);
// Randomly fade in/out individual logos
useEffect(() => {
if (!isAppsOpen || visibleIntegrations.length === 0) return;
const interval = setInterval(
() => {
setVisibleIntegrations((current) => {
// Randomly decide to replace one logo (70% chance)
if (Math.random() < 0.7 && current.length === 4) {
const indexToReplace = Math.floor(Math.random() * 4);
const availableIndices = allIntegrations
.map((_, i) => i)
.filter((i) => !current.some((item) => item.id === i));
if (availableIndices.length > 0) {
const newIndex =
availableIndices[
Math.floor(Math.random() * availableIndices.length)
];
const newVisible = [...current];
newVisible[indexToReplace] = {
id: newIndex ?? 0,
key: `change-${integrationKeyCounterRef.current++}`,
};
return newVisible;
}
}
return current;
});
},
1500 + Math.random() * 1000,
); // Random interval between 1.5-2.5 seconds
return () => clearInterval(interval);
}, [isAppsOpen, visibleIntegrations.length]);
// Match Pre-accounting container height to features list and store height for apps dropdown
useEffect(() => {
if (isFeaturesOpen && featuresListRef.current) {
// Get the full dropdown height including padding
const featuresDropdown = featuresListRef.current.closest(
"[data-features-dropdown]",
) as HTMLElement;
const featuresHeight = featuresDropdown
? featuresDropdown.offsetHeight
: featuresListRef.current.offsetHeight;
setFeaturesDropdownHeight(featuresHeight);
}
}, [isFeaturesOpen]);
// Apps dropdown height matches Features dropdown (image containers are fixed at 442x277)
useEffect(() => {
return () => {
if (featuresTimeoutRef.current) {
clearTimeout(featuresTimeoutRef.current);
}
if (appsTimeoutRef.current) {
clearTimeout(appsTimeoutRef.current);
}
};
}, []);
return (
<>
{/* Dark Overlay */}
<div
className={`fixed left-0 right-0 bottom-0 z-40 transition-opacity duration-150 ${
isFeaturesOpen || isAppsOpen
? "opacity-100 visible bg-black/40"
: "opacity-0 invisible pointer-events-none"
}`}
style={{ top: "72px" }}
/>
{/* Navigation Bar */}
<nav className="fixed top-0 left-0 right-0 z-50 w-full">
<div
ref={headerRef}
className={cn(
"relative py-3 xl:py-4 px-4 sm:px-4 md:px-4 lg:px-4 xl:px-6 2xl:px-8 flex items-center justify-between xl:gap-6",
isMenuOpen && "border-b border-border",
!transparent && "backdrop-blur-md bg-background-semi-transparent",
!transparent &&
(isFeaturesOpen || isAppsOpen) &&
"xl:bg-background",
)}
>
{/* Logo and Brand */}
<Link
href="/"
className="flex items-center gap-2 hover:opacity-80 active:opacity-80 transition-opacity duration-200 touch-manipulation"
onClick={() => setIsMenuOpen(false)}
style={{ WebkitTapHighlightColor: "transparent" }}
aria-label="Midday - Go to homepage"
>
<div className="w-6 h-6">
<Icons.LogoSmall className="w-full h-full text-foreground" />
</div>
<span className="font-sans text-base xl:hidden text-foreground">
midday
</span>
</Link>
{/* Desktop Navigation Links */}
{!hideMenuItems && (
<div className="hidden xl:flex items-center gap-6">
{/* Features with Dropdown */}
<div
className="relative -mx-3 -my-2"
onMouseEnter={() => {
if (featuresTimeoutRef.current) {
clearTimeout(featuresTimeoutRef.current);
}
prefetchFeatures();
// Rotate to next testimonial
setCurrentTestimonialIndex(
(prev) => (prev + 1) % headerTestimonials.length,
);
setIsFeaturesOpen(true);
}}
onMouseLeave={() => {
featuresTimeoutRef.current = setTimeout(() => {
setIsFeaturesOpen(false);
}, 200);
}}
>
<button
type="button"
className="text-sm transition-colors text-muted-foreground hover:text-foreground px-3 py-2 flex items-center gap-1"
>
Features
<Icons.ArrowDropDown
className={`w-4 h-4 transition-transform duration-200 ${isFeaturesOpen ? "rotate-180" : ""}`}
/>
</button>
{/* Invisible bridge to dropdown */}
{isFeaturesOpen && (
<div
className="absolute left-0 right-0 h-4"
style={{ top: "100%" }}
/>
)}
{/* Features Dropdown - Full Width */}
{isFeaturesOpen && (
<div
data-features-dropdown
className="fixed left-0 right-0 bg-background border-t border-b border-border shadow-lg z-50 overflow-hidden opacity-0 animate-dropdown-fade"
style={{ top: "100%" }}
>
<div className="p-6 xl:p-8 2xl:p-10">
<div className="grid grid-cols-1 lg:grid-cols-4 gap-4 items-start">
{/* Column 1 & 2 - Features List (2 columns) */}
<div
className="lg:col-span-2 xl:max-w-xl 2xl:max-w-xl"
ref={featuresListRef}
>
<div className="grid grid-cols-2 gap-x-4">
{/* Column 1 */}
<div>
{[
{
href: "/assistant",
title: "Assistant",
desc: "Ask questions and get clear financial answers",
},
{
href: "/insights",
title: "Insights",
desc: "See what's changing",
},
{
href: "/transactions",
title: "Transactions",
desc: "All transactions together",
},
{
href: "/inbox",
title: "Inbox",
desc: "Receipts handled automatically",
},
].map((item, index) => (
<div
key={item.href}
className="opacity-0 animate-dropdown-slide"
style={{ animationDelay: `${index * 30}ms` }}
>
<Link
href={item.href}
className="flex items-center py-3 group hover:bg-secondary transition-colors duration-200"
onClick={() => setIsFeaturesOpen(false)}
>
<div className="flex flex-col pl-2">
<span className="font-sans text-base text-foreground mb-1">
{item.title}
</span>
<span className="font-sans text-xs text-muted-foreground group-hover:text-foreground transition-colors duration-200">
{item.desc}
</span>
</div>
</Link>
</div>
))}
</div>
{/* Column 2 */}
<div>
{[
{
href: "/time-tracking",
title: "Time tracking",
desc: "See where time goes",
},
{
href: "/invoicing",
title: "Invoicing",
desc: "Get paid faster",
},
{
href: "/customers",
title: "Customers",
desc: "Know your customers",
},
{
href: "/file-storage",
title: "Files",
desc: "Everything in one place",
},
].map((item, index) => (
<div
key={item.href}
className="opacity-0 animate-dropdown-slide"
style={{
animationDelay: `${(index + 4) * 30}ms`,
}}
>
<Link
href={item.href}
className="flex items-center py-3 group hover:bg-secondary transition-colors duration-200"
onClick={() => setIsFeaturesOpen(false)}
>
<div className="flex flex-col pl-2">
<span className="font-sans text-base text-foreground mb-1">
{item.title}
</span>
<span className="font-sans text-xs text-muted-foreground group-hover:text-foreground transition-colors duration-200">
{item.desc}
</span>
</div>
</Link>
</div>
))}
</div>
</div>
</div>
{/* Column 3 & 4 - Preview Cards */}
<div className="lg:col-span-2 flex items-start justify-end gap-4 flex-nowrap">
{/* Pre-accounting Preview */}
<Link
ref={preAccountingRef}
href="/pre-accounting"
onClick={() => setIsFeaturesOpen(false)}
className="w-full max-w-[320px] lg:w-[320px] lg:max-w-none xl:w-[350px] 2xl:w-[400px] h-[277px] border border-border overflow-hidden cursor-pointer hover:opacity-90 hover:border-foreground/20 hover:scale-[1.02] transition-all duration-200 flex flex-col flex-shrink-0"
>
<div className="h-[214px] flex items-center justify-center bg-background p-4">
<Image
src="/images/accounting-light.png"
alt="Pre-accounting"
width={112}
height={400}
className="h-auto w-auto max-h-[80px] object-contain dark:hidden"
/>
<Image
src="/images/accounting-dark.png"
alt="Pre-accounting"
width={112}
height={400}
className="h-auto w-auto max-h-[80px] object-contain hidden dark:block"
/>
</div>
<div className="bg-background border-t border-border p-2.5 flex items-center justify-between gap-4">
<div className="flex-1">
<span className="font-sans text-xs text-foreground block">
Pre-accounting
</span>
<span className="font-sans text-xs text-muted-foreground group-hover:text-foreground transition-colors duration-200">
Clean records ready for your accountant
</span>
</div>
<div className="flex items-center gap-1.5 flex-shrink-0">
<div className="w-6 h-6 border border-border flex items-center justify-center bg-background">
<Image
src="/images/xero.svg"
alt="Xero"
width={14}
height={14}
className="object-contain opacity-70"
/>
</div>
<div className="w-6 h-6 border border-border flex items-center justify-center bg-background">
<Image
src="/images/quickbooks.svg"
alt="QuickBooks"
width={14}
height={14}
className="object-contain opacity-70"
/>
</div>
<div className="w-6 h-6 border border-border flex items-center justify-center bg-background">
<Image
src="/images/fortnox.svg"
alt="Fortnox"
width={14}
height={14}
className="object-contain opacity-70"
/>
</div>
</div>
</div>
</Link>
{/* Customer Stories Preview */}
<Link
href="/testimonials"
onClick={() => setIsFeaturesOpen(false)}
className="w-full max-w-[320px] lg:w-[320px] lg:max-w-none xl:w-[350px] 2xl:w-[400px] h-[277px] border border-border overflow-visible cursor-pointer hover:opacity-90 hover:border-foreground/20 hover:scale-[1.02] transition-all duration-200 flex flex-col flex-shrink-0"
>
<div className="flex-1 flex items-center justify-center bg-background p-4 relative overflow-visible">
<span className="absolute top-[89%] left-1/2 -translate-x-1/2 -translate-y-1/2 text-[20rem] xl:text-[22rem] 2xl:text-[24rem] text-muted-foreground opacity-10 pointer-events-none select-none z-0 whitespace-nowrap leading-none font-serif">
”
</span>
{(() => {
const testimonial =
headerTestimonials[currentTestimonialIndex];
if (!testimonial) return null;
const firstSentenceEnd =
testimonial.content.match(/[.!?]\s/);
const firstSentence = firstSentenceEnd
? testimonial.content.substring(
0,
firstSentenceEnd.index! + 1,
)
: testimonial.content;
return (
<div className="relative font-serif text-sm xl:text-base 2xl:text-lg leading-tight text-center px-2 line-clamp-3 w-full z-10">
<span className="text-primary">
“{firstSentence}”
</span>
</div>
);
})()}
</div>
<div className="bg-background border-t border-border p-2.5 flex items-center justify-between gap-4">
<div className="flex-1">
<span className="font-sans text-xs text-foreground block">
Customer Stories
</span>
<span className="font-sans text-xs text-muted-foreground group-hover:text-foreground transition-colors duration-200">
See how founders use Midday
</span>
</div>
{(() => {
const testimonial =
headerTestimonials[currentTestimonialIndex];
if (!testimonial?.image) return null;
return (
<div className="flex items-center gap-1.5 flex-shrink-0">
<div className="w-6 h-6 flex items-center justify-center bg-background overflow-hidden">
<Image
src={testimonial.image}
alt={testimonial.name}
width={24}
height={24}
className="w-full h-full object-cover opacity-70"
style={{ filter: "grayscale(100%)" }}
/>
</div>
</div>
);
})()}
</div>
</Link>
</div>
</div>
</div>
</div>
)}
</div>
<Link
href="/pricing"
className="text-sm transition-colors text-muted-foreground hover:text-foreground"
>
Pricing
</Link>
<Link
href="/story"
className="text-sm transition-colors text-muted-foreground hover:text-foreground"
>
Story
</Link>
<Link
href="/download"
className="text-sm transition-colors text-muted-foreground hover:text-foreground"
>
Download
</Link>
{/* Resources with Dropdown */}
<div
className="relative -mx-3 -my-2"
onMouseEnter={() => {
if (appsTimeoutRef.current) {
clearTimeout(appsTimeoutRef.current);
}
prefetchApps();
setIsAppsOpen(true);
}}
onMouseLeave={() => {
appsTimeoutRef.current = setTimeout(() => {
setIsAppsOpen(false);
}, 200);
}}
>
<button
type="button"
className="text-sm transition-colors text-muted-foreground hover:text-foreground px-3 py-2 flex items-center gap-1"
>
Resources
<Icons.ArrowDropDown
className={`w-4 h-4 transition-transform duration-200 ${isAppsOpen ? "rotate-180" : ""}`}
/>
</button>
{/* Invisible bridge to dropdown */}
{isAppsOpen && (
<div
className="absolute left-0 right-0 h-4"
style={{ top: "100%" }}
/>
)}
{/* Resources Dropdown - Full Width */}
{isAppsOpen && (
<div
className="fixed left-0 right-0 bg-background border-t border-b border-border shadow-lg z-50 overflow-hidden opacity-0 animate-dropdown-fade"
style={{
top: "100%",
height:
featuresDropdownHeight !== null
? `${featuresDropdownHeight}px`
: "auto",
}}
>
<div className="p-6 xl:p-8 2xl:p-10 h-full">
<div className="grid grid-cols-1 lg:grid-cols-4 gap-4 xl:gap-6 items-start h-full">
{/* Column 1 & 2 - Apps List (2 columns) */}
<div
ref={appsListRef}
className="lg:col-span-2 lg:max-w-md xl:max-w-lg 2xl:max-w-xl"
>
<div className="grid grid-cols-2 gap-x-4">
{/* Column 1 */}
<div>
{[
{
href: "/integrations",
title: "Integrations",
desc: "Connect your existing tools.",
external: false,
},
{
href: "/docs",
title: "Documentation",
desc: "Learn how to use Midday.",
external: false,
},
{
href: "/mcp",
title: "AI Integrations",
desc: "Connect AI tools to your financial data.",
external: false,
},
].map((item, index) => (
<div
key={item.href}
className="opacity-0 animate-dropdown-slide"
style={{ animationDelay: `${index * 30}ms` }}
>
<Link
href={item.href}
className="flex items-center py-3 group hover:bg-secondary transition-colors duration-200"
onClick={() => setIsAppsOpen(false)}
>
<div className="flex flex-col pl-2">
<span className="font-sans text-base text-foreground mb-1">
{item.title}
</span>
<span className="font-sans text-xs text-muted-foreground group-hover:text-foreground transition-colors duration-200">
{item.desc}
</span>
</div>
</Link>
</div>
))}
</div>
{/* Column 2 */}
<div>
{[
{
href: "https://api.midday.ai",
title: "Developer & API",
desc: "Programmatic access to Midday.",
external: true,
},
{
href: "/sdks",
title: "SDKs",
desc: "Typed SDKs to build faster.",
external: false,
},
].map((item, index) => (
<div
key={`${item.href}-${item.title}`}
className="opacity-0 animate-dropdown-slide"
style={{
animationDelay: `${(index + 2) * 30}ms`,
}}
>
{item.external ? (
<a
href={item.href}
className="flex items-center py-3 group hover:bg-secondary transition-colors duration-200"
onClick={() => setIsAppsOpen(false)}
>
<div className="flex flex-col pl-2">
<span className="font-sans text-base text-foreground mb-1">
{item.title}
</span>
<span className="font-sans text-xs text-muted-foreground group-hover:text-foreground transition-colors duration-200">
{item.desc}
</span>
</div>
</a>
) : (
<Link
href={item.href}
className="flex items-center py-3 group hover:bg-secondary transition-colors duration-200"
onClick={() => setIsAppsOpen(false)}
>
<div className="flex flex-col pl-2">
<span className="font-sans text-base text-foreground mb-1">
{item.title}
</span>
<span className="font-sans text-xs text-muted-foreground group-hover:text-foreground transition-colors duration-200">
{item.desc}
</span>
</div>
</Link>
)}
</div>
))}
</div>
</div>
</div>
{/* Columns 3 & 4 - Image Previews Container */}
<div className="lg:col-span-2 flex items-start justify-end gap-4 flex-nowrap">
{/* Integrations Preview */}
<Link
ref={integrationsAppRef}
href="/integrations"
onClick={() => setIsAppsOpen(false)}
className="w-full max-w-[320px] lg:w-[320px] lg:max-w-none xl:w-[350px] 2xl:w-[400px] h-[277px] border border-border overflow-hidden cursor-pointer hover:opacity-90 hover:border-foreground/20 hover:scale-[1.02] transition-all duration-200 flex flex-col flex-shrink-0"
>
<div className="flex-1">
<HeaderIntegrationsPreview />
</div>
<div className="bg-background border-t border-border p-2.5 flex items-center justify-between gap-4">
<div className="flex-1">
<span className="font-sans text-xs text-foreground block">
Integrations
</span>
<span className="font-sans text-xs text-muted-foreground group-hover:text-foreground transition-colors duration-200">
Connect your existing tools.
</span>
</div>
<div className="flex items-center gap-1.5 flex-shrink-0 relative h-6">
{visibleIntegrations.map((item) => (
<div
key={item.key}
className="w-6 h-6 border border-border flex items-center justify-center bg-background transition-all duration-300"
>
<Image
src={allIntegrations[item.id]?.src ?? ""}
alt={allIntegrations[item.id]?.alt ?? ""}
width={14}
height={14}
className="object-contain opacity-70"
/>
</div>
))}
</div>
</div>
</Link>
{/* Mac App Preview */}
<Link
ref={macAppRef}
href="/download"
onClick={() => setIsAppsOpen(false)}
className="w-full max-w-[320px] lg:w-[320px] lg:max-w-none xl:w-[350px] 2xl:w-[400px] h-[277px] border border-border overflow-hidden cursor-pointer hover:opacity-90 hover:border-foreground/20 hover:scale-[1.02] transition-all duration-200 flex flex-col flex-shrink-0"
>
<div className="flex-1 flex items-center justify-center bg-background p-4">
<Image
src="/images/header-dock-light.png"
alt="Mac Dock"
width={1200}
height={300}
className="w-3/4 h-auto object-contain dark:hidden"
/>
<Image
src="/images/header-dock-dark.png"
alt="Mac Dock"
width={1200}
height={300}
className="w-3/4 h-auto object-contain hidden dark:block"
/>
</div>
<div className="bg-background border-t border-border p-2.5">
<span className="font-sans text-xs text-foreground block">
Mac app
</span>
<span className="font-sans text-xs text-muted-foreground group-hover:text-foreground transition-colors duration-200">
Your finances, always one click away.
</span>
</div>
</Link>
</div>
</div>
</div>
</div>
)}
</div>
{/* Sign in */}
<div className="border-l border-border pl-4">
<Link
href="https://app.midday.ai/"
className="text-sm transition-colors text-primary hover:text-primary/80"
>
Sign in
</Link>
</div>
</div>
)}
{/* Mobile & Tablet Hamburger Menu */}
<div className="xl:hidden flex items-center">
<button
type="button"
onClick={() => setIsMenuOpen(!isMenuOpen)}
className="relative transition-colors flex items-center justify-end p-2 min-w-[44px] min-h-[44px] text-primary hover:text-primary/80 xl:active:text-primary focus:outline-none focus-visible:outline-none touch-manipulation"
style={{
WebkitTapHighlightColor: "transparent",
}}
aria-label={isMenuOpen ? "Close menu" : "Open menu"}
>
<div className="relative size-5 flex flex-col justify-center items-center">
<motion.span
className="absolute w-4 h-[1.5px] bg-current rounded-none"
animate={{
rotate: isMenuOpen ? 45 : 0,
y: isMenuOpen ? 0 : -4.5,
}}
transition={{ type: "spring", stiffness: 300, damping: 25 }}
/>
<motion.span
className="absolute w-4 h-[1.5px] bg-current rounded-none"
animate={{
opacity: isMenuOpen ? 0 : 1,
scaleX: isMenuOpen ? 0 : 1,
}}
transition={{ type: "spring", stiffness: 300, damping: 25 }}
/>
<motion.span
className="absolute w-4 h-[1.5px] bg-current rounded-none"
animate={{
rotate: isMenuOpen ? -45 : 0,
y: isMenuOpen ? 0 : 4.5,
}}
transition={{ type: "spring", stiffness: 300, damping: 25 }}
/>
</div>
</button>
</div>
</div>
</nav>
{/* Mobile & Tablet Menu Overlay */}
{isMenuOpen && (
<div className="fixed inset-0 z-40 xl:hidden bg-background">
<div className="pt-28 px-6">
<div className="flex flex-col space-y-6 text-left">
{/* Features Expandable Section */}
<div className="flex flex-col">
<button
type="button"
onClick={(e) => {
setIsMobileFeaturesOpen(!isMobileFeaturesOpen);
e.currentTarget.blur();
}}
onTouchEnd={(e) => {
e.currentTarget.blur();
}}
className="text-2xl font-sans transition-colors py-2 text-primary hover:text-primary xl:active:text-primary focus:outline-none focus-visible:outline-none touch-manipulation flex items-center justify-between"
style={{
WebkitTapHighlightColor: "transparent",
}}
>
<span>Features</span>
<Icons.ArrowDropDown
className={`w-6 h-6 transition-transform duration-200 ${
isMobileFeaturesOpen ? "rotate-180" : ""
}`}
/>
</button>
{isMobileFeaturesOpen && (
<>
<div className="h-px w-full border-t border-border my-2" />
<div className="overflow-hidden opacity-0 animate-mobile-slide">
<div className="flex flex-col space-y-4 pt-2">
<Link
href="/assistant"
onClick={() => {
setIsMenuOpen(false);
setIsMobileFeaturesOpen(false);
}}
className="text-lg font-sans text-left text-muted-foreground hover:text-muted-foreground xl:active:text-muted-foreground focus:outline-none focus-visible:outline-none touch-manipulation transition-colors"
style={{ WebkitTapHighlightColor: "transparent" }}
>
Assistant
</Link>
<Link
href="/insights"
onClick={() => {
setIsMenuOpen(false);
setIsMobileFeaturesOpen(false);
}}
className="text-lg font-sans text-left text-muted-foreground hover:text-muted-foreground xl:active:text-muted-foreground focus:outline-none focus-visible:outline-none touch-manipulation transition-colors"
style={{ WebkitTapHighlightColor: "transparent" }}
>
Insights
</Link>
<Link
href="/transactions"
onClick={() => {
setIsMenuOpen(false);
setIsMobileFeaturesOpen(false);
}}
className="text-lg font-sans text-left text-muted-foreground hover:text-muted-foreground xl:active:text-muted-foreground focus:outline-none focus-visible:outline-none touch-manipulation transition-colors"
style={{ WebkitTapHighlightColor: "transparent" }}
>
Transactions
</Link>
<Link
href="/inbox"
onClick={() => {
setIsMenuOpen(false);
setIsMobileFeaturesOpen(false);
}}
className="text-lg font-sans text-left text-muted-foreground hover:text-muted-foreground xl:active:text-muted-foreground focus:outline-none focus-visible:outline-none touch-manipulation transition-colors"
style={{ WebkitTapHighlightColor: "transparent" }}
>
Inbox
</Link>
<Link
href="/time-tracking"
onClick={() => {
setIsMenuOpen(false);
setIsMobileFeaturesOpen(false);
}}
className="text-lg font-sans text-left text-muted-foreground hover:text-muted-foreground xl:active:text-muted-foreground focus:outline-none focus-visible:outline-none touch-manipulation transition-colors"
style={{ WebkitTapHighlightColor: "transparent" }}
>
Time tracking
</Link>
<Link
href="/invoicing"
onClick={() => {
setIsMenuOpen(false);
setIsMobileFeaturesOpen(false);
}}
className="text-lg font-sans text-left text-muted-foreground hover:text-muted-foreground xl:active:text-muted-foreground focus:outline-none focus-visible:outline-none touch-manipulation transition-colors"
style={{ WebkitTapHighlightColor: "transparent" }}
>
Invoicing
</Link>
<Link
href="/customers"
onClick={() => {
setIsMenuOpen(false);
setIsMobileFeaturesOpen(false);
}}
className="text-lg font-sans text-left text-muted-foreground hover:text-muted-foreground xl:active:text-muted-foreground focus:outline-none focus-visible:outline-none touch-manipulation transition-colors"
style={{ WebkitTapHighlightColor: "transparent" }}
>
Customers
</Link>
<Link
href="/file-storage"
onClick={() => {
setIsMenuOpen(false);
setIsMobileFeaturesOpen(false);
}}
className="text-lg font-sans text-left text-muted-foreground hover:text-muted-foreground xl:active:text-muted-foreground focus:outline-none focus-visible:outline-none touch-manipulation transition-colors"
style={{ WebkitTapHighlightColor: "transparent" }}
>
Files
</Link>
</div>
</div>
</>
)}
</div>
<Link
href="/pricing"
onTouchEnd={(e) => {
const target = e.currentTarget;
if (target) {
target.blur();
setTimeout(() => {
if (target) {
target.blur();
}
}, 100);
}
}}
className="no-touch-active text-2xl font-sans transition-colors py-2 text-primary hover:text-primary xl:active:text-primary focus:outline-none focus-visible:outline-none touch-manipulation"
onClick={() => setIsMenuOpen(false)}
style={{ WebkitTapHighlightColor: "transparent" }}
>
Pricing
</Link>
<Link
href="/story"
onTouchEnd={(e) => {
const target = e.currentTarget;
if (target) {
target.blur();
setTimeout(() => {
if (target) {
target.blur();
}
}, 100);
}
}}
className="no-touch-active text-2xl font-sans transition-colors py-2 text-primary hover:text-primary xl:active:text-primary focus:outline-none focus-visible:outline-none touch-manipulation"
onClick={() => setIsMenuOpen(false)}
style={{ WebkitTapHighlightColor: "transparent" }}
>
Story
</Link>
<Link
href="/download"
onTouchEnd={(e) => {
const target = e.currentTarget;
if (target) {
target.blur();
setTimeout(() => {
if (target) {
target.blur();
}
}, 100);
}
}}
className="no-touch-active text-2xl font-sans transition-colors py-2 text-primary hover:text-primary xl:active:text-primary focus:outline-none focus-visible:outline-none touch-manipulation"
onClick={() => setIsMenuOpen(false)}
style={{ WebkitTapHighlightColor: "transparent" }}
>
Download
</Link>
{/* Resources Expandable Section */}
<div className="flex flex-col">
<button
type="button"
onClick={(e) => {
setIsMobileAppsOpen(!isMobileAppsOpen);
e.currentTarget.blur();
}}
onTouchEnd={(e) => {
e.currentTarget.blur();
}}
className="text-2xl font-sans transition-colors py-2 text-primary hover:text-primary xl:active:text-primary focus:outline-none focus-visible:outline-none touch-manipulation flex items-center justify-between"
style={{
WebkitTapHighlightColor: "transparent",
}}
>
<span>Resources</span>
<Icons.ArrowDropDown
className={`w-6 h-6 transition-transform duration-200 ${
isMobileAppsOpen ? "rotate-180" : ""
}`}
/>
</button>
{isMobileAppsOpen && (
<>
<div className="h-px w-full border-t border-border my-2" />
<div className="overflow-hidden opacity-0 animate-mobile-slide">
<div className="flex flex-col space-y-4 pt-2">
<Link
href="/integrations"
onClick={() => {
setIsMenuOpen(false);
setIsMobileAppsOpen(false);
}}
className="text-lg font-sans text-left text-muted-foreground hover:text-muted-foreground xl:active:text-muted-foreground focus:outline-none focus-visible:outline-none touch-manipulation transition-colors"
style={{ WebkitTapHighlightColor: "transparent" }}
>
Integrations
</Link>
<Link
href="/docs"
onClick={() => {
setIsMenuOpen(false);
setIsMobileAppsOpen(false);
}}
className="text-lg font-sans text-left text-muted-foreground hover:text-muted-foreground xl:active:text-muted-foreground focus:outline-none focus-visible:outline-none touch-manipulation transition-colors"
style={{ WebkitTapHighlightColor: "transparent" }}
>
Documentation
</Link>
<Link
href="/mcp"
onClick={() => {
setIsMenuOpen(false);
setIsMobileAppsOpen(false);
}}
className="text-lg font-sans text-left text-muted-foreground hover:text-muted-foreground xl:active:text-muted-foreground focus:outline-none focus-visible:outline-none touch-manipulation transition-colors"
style={{ WebkitTapHighlightColor: "transparent" }}
>
AI Integrations
</Link>
<a
href="https://api.midday.ai"
onClick={() => {
setIsMenuOpen(false);
setIsMobileAppsOpen(false);
}}
className="text-lg font-sans text-left text-muted-foreground hover:text-muted-foreground xl:active:text-muted-foreground focus:outline-none focus-visible:outline-none touch-manipulation transition-colors"
style={{ WebkitTapHighlightColor: "transparent" }}
>
Developer & API
</a>
<Link
href="/sdks"
onClick={() => {
setIsMenuOpen(false);
setIsMobileAppsOpen(false);
}}
className="text-lg font-sans text-left text-muted-foreground hover:text-muted-foreground xl:active:text-muted-foreground focus:outline-none focus-visible:outline-none touch-manipulation transition-colors"
style={{ WebkitTapHighlightColor: "transparent" }}
>
SDKs
</Link>
</div>
</div>
</>
)}
</div>
{/* Sign in */}
<div className="border-t border-border pt-8 mt-8">
<Link
href="https://app.midday.ai/"
onTouchEnd={(e) => {
const target = e.currentTarget;
if (target) {
target.blur();
setTimeout(() => {
if (target) {
target.blur();
}
}, 100);
}
}}
className="text-2xl font-sans transition-colors py-2 text-primary hover:text-primary xl:active:text-primary focus:outline-none focus-visible:outline-none touch-manipulation"
onClick={() => setIsMenuOpen(false)}
style={{ WebkitTapHighlightColor: "transparent" }}
>
Sign in
</Link>
</div>
</div>
</div>
</div>
)}
</>
);
}
|