Spaces:
Running
Running
File size: 80,114 Bytes
c20663a |
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 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PEInsights - Private Equity Intelligence Platform</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#1a365d',
secondary: '#2c5282',
accent: '#4299e1',
dark: '#1a202c',
light: '#f7fafc'
}
}
}
}
</script>
<style>
.gradient-bg {
background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
}
.news-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.quick-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
.section-divider {
border-bottom: 1px solid #e2e8f0;
margin: 1.5rem 0;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- Navigation -->
<nav class="gradient-bg text-white shadow-lg">
<div class="container mx-auto px-4 py-3">
<div class="flex justify-between items-center">
<div class="flex items-center space-x-4">
<div class="flex items-center">
<i class="fas fa-chart-line text-2xl mr-2"></i>
<span class="text-xl font-bold">PEInsights</span>
</div>
<div class="hidden md:flex space-x-6">
<a href="#" class="hover:text-blue-200 font-medium">Home</a>
<a href="#news" class="hover:text-blue-200 font-medium">News</a>
<a href="#companies" class="hover:text-blue-200 font-medium">Companies</a>
<a href="#firms" class="hover:text-blue-200 font-medium">PE Firms</a>
</div>
</div>
<div class="flex items-center space-x-4">
<button class="bg-blue-500 hover:bg-blue-600 px-4 py-2 rounded-md font-medium transition">
Sign In
</button>
<button class="md:hidden">
<i class="fas fa-bars text-xl"></i>
</button>
</div>
</div>
</div>
</nav>
<!-- Hero Section with Search -->
<section class="gradient-bg text-white py-16">
<div class="container mx-auto px-4">
<div class="max-w-4xl mx-auto text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Private Equity Intelligence, Simplified</h1>
<p class="text-xl mb-8 text-blue-100">Comprehensive data and news on U.S. private companies owned by private equity firms</p>
<!-- Advanced Search -->
<div class="bg-white rounded-lg shadow-xl p-4 mb-8">
<div class="flex">
<input type="text" placeholder="Try: 'Recent healthcare deals by KKR' or 'Credit risks for Securus Technologies'"
class="flex-grow px-4 py-3 rounded-l-md text-gray-800 focus:outline-none">
<button class="bg-blue-500 hover:bg-blue-600 text-white px-6 py-3 rounded-r-md font-medium">
<i class="fas fa-search mr-2"></i> Search
</button>
</div>
<div class="mt-2 text-sm text-gray-600 text-left">
<span class="font-medium">Examples:</span>
<span class="ml-2">"Portfolio companies of Bain Capital"</span>
<span class="ml-2">•</span>
<span class="ml-2">"Recent retail sector exits"</span>
</div>
</div>
<div class="flex flex-wrap justify-center gap-4">
<div class="flex items-center bg-blue-500 bg-opacity-20 px-4 py-2 rounded-full">
<i class="fas fa-database mr-2"></i>
<span>10,000+ Company Profiles</span>
</div>
<div class="flex items-center bg-blue-500 bg-opacity-20 px-4 py-2 rounded-full">
<i class="fas fa-newspaper mr-2"></i>
<span>Daily News Updates</span>
</div>
<div class="flex items-center bg-blue-500 bg-opacity-20 px-4 py-2 rounded-full">
<i class="fas fa-chart-pie mr-2"></i>
<span>Industry Analytics</span>
</div>
</div>
</div>
</div>
</section>
<!-- Main Content -->
<div class="container mx-auto px-4 py-12">
<!-- News Feed Section -->
<section id="news" class="mb-16">
<div class="flex justify-between items-center mb-8">
<h2 class="text-3xl font-bold text-gray-800">Latest Private Equity News</h2>
<a href="#" class="text-blue-500 hover:text-blue-700 font-medium">View All News <i class="fas fa-arrow-right ml-1"></i></a>
</div>
<!-- News Filters -->
<div class="bg-white rounded-lg shadow-sm p-4 mb-6">
<div class="flex flex-wrap gap-4">
<div class="flex-1 min-w-[200px]">
<label class="block text-sm font-medium text-gray-700 mb-1">Industry</label>
<select class="w-full p-2 border border-gray-300 rounded-md">
<option>All Industries</option>
<option>Healthcare</option>
<option>Technology</option>
<option>Retail</option>
<option>Manufacturing</option>
</select>
</div>
<div class="flex-1 min-w-[200px]">
<label class="block text-sm font-medium text-gray-700 mb-1">PE Firm</label>
<select class="w-full p-2 border border-gray-300 rounded-md">
<option>All Firms</option>
<option>KKR & Co.</option>
<option>Blackstone</option>
<option>Bain Capital</option>
<option>Carlyle Group</option>
</select>
</div>
<div class="flex-1 min-w-[200px]">
<label class="block text-sm font-medium text-gray-700 mb-1">Timeframe</label>
<select class="w-full p-2 border border-gray-300 rounded-md">
<option>Last 7 Days</option>
<option>Last 30 Days</option>
<option>Last Quarter</option>
<option>Last Year</option>
</select>
</div>
<div class="flex items-end">
<button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-md h-[42px]">
Apply Filters
</button>
</div>
</div>
</div>
<!-- News Cards -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- News Card 1 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden news-card transition duration-300">
<div class="p-5">
<div class="flex justify-between items-start mb-2">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">M&A</span>
<span class="text-gray-500 text-sm">2 hours ago</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">KKR to Acquire Majority Stake in Healthcare IT Firm for $1.8B</h3>
<p class="text-gray-600 mb-4">KKR & Co. is nearing a deal to acquire a 70% stake in MediTech Solutions from Carlyle Group, sources say...</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">Source: Wall Street Journal</span>
<a href="#" class="text-blue-500 hover:text-blue-700 text-sm font-medium">Read More <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
<!-- News Card 2 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden news-card transition duration-300">
<div class="p-5">
<div class="flex justify-between items-start mb-2">
<span class="bg-green-100 text-green-800 text-xs font-medium px-2.5 py-0.5 rounded">Financing</span>
<span class="text-gray-500 text-sm">5 hours ago</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Blackstone-Backed Belk Refinances Debt Amid Retail Recovery</h3>
<p class="text-gray-600 mb-4">Department store chain Belk, owned by Sycamore Partners, has successfully refinanced $1.2B in debt...</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">Source: Bloomberg</span>
<a href="#" class="text-blue-500 hover:text-blue-700 text-sm font-medium">Read More <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
<!-- News Card 3 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden news-card transition duration-300">
<div class="p-5">
<div class="flex justify-between items-start mb-2">
<span class="bg-purple-100 text-purple-800 text-xs font-medium px-2.5 py-0.5 rounded">Earnings</span>
<span class="text-gray-500 text-sm">Yesterday</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Securus Technologies Reports 12% Revenue Growth Under Platinum Equity</h3>
<p class="text-gray-600 mb-4">The prison telecom provider, now called Aventiv Technologies, shows improved margins despite regulatory challenges...</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">Source: Private Equity News</span>
<a href="#" class="text-blue-500 hover:text-blue-700 text-sm font-medium">Read More <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- Featured Companies Section -->
<section id="companies" class="mb-16">
<div class="flex justify-between items-center mb-8">
<h2 class="text-3xl font-bold text-gray-800">Featured Portfolio Companies</h2>
<a href="#" class="text-blue-500 hover:text-blue-700 font-medium">Browse All Companies <i class="fas fa-arrow-right ml-1"></i></a>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Company Card 1 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition duration-300">
<div class="p-5">
<div class="flex items-center mb-4">
<div class="w-16 h-16 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<i class="fas fa-building text-2xl text-gray-500"></i>
</div>
<div>
<h3 class="text-xl font-bold text-gray-800">Securus Technologies</h3>
<p class="text-gray-600">(Aventiv Technologies)</p>
</div>
</div>
<div class="quick-stats gap-2 mb-4">
<div class="bg-gray-100 p-2 rounded text-center">
<div class="text-xs text-gray-500">Owner</div>
<div class="font-medium">Platinum Equity</div>
</div>
<div class="bg-gray-100 p-2 rounded text-center">
<div class="text-xs text-gray-500">Employees</div>
<div class="font-medium">2,500</div>
</div>
<div class="bg-gray-100 p-2 rounded text-center">
<div class="text-xs text-gray-500">Sector</div>
<div class="font-medium">Telecom</div>
</div>
</div>
<div class="section-divider"></div>
<p class="text-gray-600 mb-4">Leading provider of inmate communications, corrections technology, and payment services to prisons and jails.</p>
<div class="flex justify-between items-center">
<div>
<span class="text-sm text-gray-500">Acquired:</span>
<span class="text-sm font-medium ml-1">2017</span>
</div>
<a href="#securus" class="text-blue-500 hover:text-blue-700 text-sm font-medium">View Profile <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
<!-- Company Card 2 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition duration-300">
<div class="p-5">
<div class="flex items-center mb-4">
<div class="w-16 h-16 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<i class="fas fa-store text-2xl text-gray-500"></i>
</div>
<div>
<h3 class="text-xl font-bold text-gray-800">Belk, Inc.</h3>
<p class="text-gray-600">Department Stores</p>
</div>
</div>
<div class="quick-stats gap-2 mb-4">
<div class="bg-gray-100 p-2 rounded text-center">
<div class="text-xs text-gray-500">Owner</div>
<div class="font-medium">Sycamore Partners</div>
</div>
<div class="bg-gray-100 p-2 rounded text-center">
<div class="text-xs text-gray-500">Employees</div>
<div class="font-medium">18,000</div>
</div>
<div class="bg-gray-100 p-2 rounded text-center">
<div class="text-xs text-gray-500">Sector</div>
<div class="font-medium">Retail</div>
</div>
</div>
<div class="section-divider"></div>
<p class="text-gray-600 mb-4">Regional department store chain operating nearly 300 locations across the Southern United States.</p>
<div class="flex justify-between items-center">
<div>
<span class="text-sm text-gray-500">Acquired:</span>
<span class="text-sm font-medium ml-1">2015</span>
</div>
<a href="#" class="text-blue-500 hover:text-blue-700 text-sm font-medium">View Profile <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
<!-- Company Card 3 -->
<div class="bg-white rounded-lg shadow-md overflow-hidden hover:shadow-lg transition duration-300">
<div class="p-5">
<div class="flex items-center mb-4">
<div class="w-16 h-16 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<i class="fas fa-heartbeat text-2xl text-gray-500"></i>
</div>
<div>
<h3 class="text-xl font-bold text-gray-800">Envision Healthcare</h3>
<p class="text-gray-600">Physician Services</p>
</div>
</div>
<div class="quick-stats gap-2 mb-4">
<div class="bg-gray-100 p-2 rounded text-center">
<div class="text-xs text-gray-500">Owner</div>
<div class="font-medium">KKR</div>
</div>
<div class="bg-gray-100 p-2 rounded text-center">
<div class="text-xs text-gray-500">Employees</div>
<div class="font-medium">25,000</div>
</div>
<div class="bg-gray-100 p-2 rounded text-center">
<div class="text-xs text-gray-500">Sector</div>
<div class="font-medium">Healthcare</div>
</div>
</div>
<div class="section-divider"></div>
<p class="text-gray-600 mb-4">Provider of physician-led services and ambulatory surgical centers across the U.S. healthcare system.</p>
<div class="flex justify-between items-center">
<div>
<span class="text-sm text-gray-500">Acquired:</span>
<span class="text-sm font-medium ml-1">2018</span>
</div>
<a href="#" class="text-blue-500 hover:text-blue-700 text-sm font-medium">View Profile <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- Recent Transactions Section -->
<section class="mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8">Recent Major Transactions</h2>
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Company</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Transaction</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">PE Firm</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Value</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Sector</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">06/15/2023</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">PetVet Care Centers</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Secondary Buyout</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">KKR (from L Catterton)</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">$4.0B</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Veterinary</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">05/22/2023</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">Veritas Technologies</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Acquisition</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Carlyle Group</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">$1.1B</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Software</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">04/30/2023</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">West Corporation</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Exit to Strategic</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Apollo Global (to Cisco)</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">$3.2B</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Communications</td>
</tr>
<tr class="hover:bg-gray-50">
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">04/18/2023</td>
<td class="px-6 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">SRS Distribution</div>
</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Secondary Buyout</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Blackstone (from Berkshire)</td>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium">$1.8B</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Building Products</td>
</tr>
</tbody>
</table>
</div>
<div class="bg-gray-50 px-6 py-3 flex items-center justify-between border-t border-gray-200">
<div class="text-sm text-gray-500">
Showing <span class="font-medium">1</span> to <span class="font-medium">4</span> of <span class="font-medium">24</span> transactions
</div>
<div class="flex space-x-2">
<button class="px-3 py-1 border border-gray-300 rounded-md text-sm font-medium text-gray-700 bg-white hover:bg-gray-50">
Previous
</button>
<button class="px-3 py-1 border border-gray-300 rounded-md text-sm font-medium text-gray-700 bg-white hover:bg-gray-50">
Next
</button>
</div>
</div>
</div>
</section>
</div>
<!-- Company Profile Page Example (Securus Technologies) -->
<div id="securus" class="container mx-auto px-4 py-12">
<div class="bg-white rounded-lg shadow-lg overflow-hidden">
<!-- Company Header -->
<div class="gradient-bg text-white p-8">
<div class="flex flex-col md:flex-row justify-between items-start md:items-center">
<div class="flex items-center mb-4 md:mb-0">
<div class="w-20 h-20 rounded-full bg-white flex items-center justify-center mr-6">
<i class="fas fa-phone-alt text-3xl text-blue-800"></i>
</div>
<div>
<h1 class="text-3xl font-bold">Securus Technologies</h1>
<p class="text-blue-200">(Aventiv Technologies)</p>
</div>
</div>
<div class="bg-white bg-opacity-20 rounded-lg p-4">
<div class="quick-stats gap-4">
<div class="text-center">
<div class="text-xs text-blue-200">Current Owner</div>
<div class="font-medium">Platinum Equity</div>
</div>
<div class="text-center">
<div class="text-xs text-blue-200">Acquired</div>
<div class="font-medium">2017</div>
</div>
<div class="text-center">
<div class="text-xs text-blue-200">Employees</div>
<div class="font-medium">2,500</div>
</div>
<div class="text-center">
<div class="text-xs text-blue-200">HQ</div>
<div class="font-medium">Dallas, TX</div>
</div>
</div>
</div>
</div>
</div>
<!-- Company Content -->
<div class="p-8">
<!-- Tabs -->
<div class="border-b border-gray-200 mb-6">
<nav class="-mb-px flex space-x-8">
<button data-tab="overview" class="tab-button border-b-2 border-blue-500 text-blue-600 font-medium py-4 px-1 text-sm">
Overview
</button>
<button data-tab="ownership" class="tab-button border-b-2 border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 font-medium py-4 px-1 text-sm">
Ownership
</button>
<button data-tab="financials" class="tab-button border-b-2 border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 font-medium py-4 px-1 text-sm">
Financials
</button>
<button data-tab="leadership" class="tab-button border-b-2 border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 font-medium py-4 px-1 text-sm">
Leadership
</button>
<button data-tab="news" class="tab-button border-b-2 border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 font-medium py-4 px-1 text-sm">
Company News
</button>
</nav>
</div>
<!-- Tab Content -->
<div id="overview" class="tab-content active">
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
<!-- Left Column -->
<div class="lg:col-span-2">
<h2 class="text-xl font-bold text-gray-800 mb-4">Company Snapshot</h2>
<p class="text-gray-600 mb-6">Securus Technologies, rebranded as Aventiv Technologies in 2020, is a leading provider of inmate communications, corrections technology, and payment services to prisons and jails across North America. The company serves approximately 3,450 correctional facilities and over 1.2 million inmates nationwide.</p>
<div class="bg-gray-50 rounded-lg p-4 mb-6">
<h3 class="text-lg font-medium text-gray-800 mb-3">Strategic Positioning</h3>
<ul class="list-disc pl-5 space-y-2 text-gray-600">
<li>Market leader in prison communications with estimated 60% market share</li>
<li>Diversified revenue streams including phone calls, video visitation, and payment processing</li>
<li>Facing regulatory pressure on call rate caps and competition from new technologies</li>
<li>Investing in digital platforms to offset declining traditional revenue</li>
</ul>
</div>
<div class="mb-6">
<h3 class="text-lg font-medium text-gray-800 mb-3">Credit Risk Factors</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="bg-red-50 border-l-4 border-red-400 p-4">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-exclamation-circle text-red-400"></i>
</div>
<div class="ml-3">
<p class="text-sm text-red-700">
<span class="font-medium">Regulatory Risk:</span> Ongoing FCC regulations limiting inmate call rates
</p>
</div>
</div>
</div>
<div class="bg-yellow-50 border-l-4 border-yellow-400 p-4">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-exclamation-triangle text-yellow-400"></i>
</div>
<div class="ml-3">
<p class="text-sm text-yellow-700">
<span class="font-medium">Competition:</span> New entrants offering lower-cost digital solutions
</p>
</div>
</div>
</div>
<div class="bg-blue-50 border-l-4 border-blue-400 p-4">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-info-circle text-blue-400"></i>
</div>
<div class="ml-3">
<p class="text-sm text-blue-700">
<span class="font-medium">Leverage:</span> High debt load from 2017 LBO (6.5x EBITDA at close)
</p>
</div>
</div>
</div>
<div class="bg-green-50 border-l-4 border-green-400 p-4">
<div class="flex">
<div class="flex-shrink-0">
<i class="fas fa-check-circle text-green-400"></i>
</div>
<div class="ml-3">
<p class="text-sm text-green-700">
<span class="font-medium">Stickiness:</span> High customer retention due to regulatory barriers
</p>
</div>
</div>
</div>
</div>
</div>
<h2 class="text-xl font-bold text-gray-800 mb-4">Industry Classification</h2>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4 mb-6">
<div>
<div class="text-xs text-gray-500">Primary Sector</div>
<div class="font-medium">Telecommunications</div>
</div>
<div>
<div class="text-xs text-gray-500">Sub-Sector</div>
<div class="font-medium">Prison Telecom</div>
</div>
<div>
<div class="text-xs text-gray-500">SIC Code</div>
<div class="font-medium">4813 - Telephone Communications</div>
</div>
<div>
<div class="text-xs text-gray-500">NAICS Code</div>
<div class="font-medium">517311 - Wired Telecommunications</div>
</div>
</div>
</div>
<!-- Right Column -->
<div>
<div class="bg-gray-50 rounded-lg p-5 mb-6">
<h3 class="text-lg font-medium text-gray-800 mb-3">Key Metrics</h3>
<div class="space-y-4">
<div>
<div class="text-sm text-gray-500">Estimated Revenue (2022)</div>
<div class="font-medium">$850M - $900M</div>
</div>
<div>
<div class="text-sm text-gray-500">Estimated EBITDA</div>
<div class="font-medium">$320M - $350M</div>
</div>
<div>
<div class="text-sm text-gray-500">LTM Revenue Growth</div>
<div class="font-medium text-green-600">+4.5%</div>
</div>
<div>
<div class="text-sm text-gray-500">LTM EBITDA Margin</div>
<div class="font-medium">~38%</div>
</div>
</div>
</div>
<div class="bg-gray-50 rounded-lg p-5">
<h3 class="text-lg font-medium text-gray-800 mb-3">Corporate Development</h3>
<div class="space-y-4">
<div>
<div class="text-sm text-gray-500">2020</div>
<div class="font-medium">Rebranded as Aventiv Technologies</div>
</div>
<div>
<div class="text-sm text-gray-500">2017</div>
<div class="font-medium">Acquired by Platinum Equity for $1.6B</div>
</div>
<div>
<div class="text-sm text-gray-500">2015</div>
<div class="font-medium">Merged with JPay (prison payment services)</div>
</div>
<div>
<div class="text-sm text-gray-500">2011</div>
<div class="font-medium">Acquired by ABRY Partners</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Ownership Tab Content -->
<div id="ownership" class="tab-content">
<h2 class="text-xl font-bold text-gray-800 mb-4">Ownership Structure</h2>
<div class="mb-8">
<h3 class="text-lg font-medium text-gray-800 mb-3">Current Ownership</h3>
<div class="bg-white shadow overflow-hidden sm:rounded-lg">
<div class="px-4 py-5 sm:px-6 border-b border-gray-200">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<i class="fas fa-landmark text-gray-500"></i>
</div>
<div>
<h4 class="text-lg leading-6 font-medium text-gray-900">Platinum Equity</h4>
<p class="mt-1 text-sm text-gray-500">Private Equity Firm since 2017</p>
</div>
</div>
</div>
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
<dt class="text-sm font-medium text-gray-500">Ownership Stake</dt>
<dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">100%</dd>
</div>
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
<dt class="text-sm font-medium text-gray-500">Acquisition Date</dt>
<dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">November 2017</dd>
</div>
<div class="bg-gray-50 px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
<dt class="text-sm font-medium text-gray-500">Transaction Value</dt>
<dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">$1.6 billion</dd>
</div>
<div class="bg-white px-4 py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
<dt class="text-sm font-medium text-gray-500">Transaction Type</dt>
<dd class="mt-1 text-sm text-gray-900 sm:mt-0 sm:col-span-2">Corporate Divestiture (from T-NETIX)</dd>
</div>
</div>
</div>
<div>
<h3 class="text-lg font-medium text-gray-800 mb-3">Historical Ownership</h3>
<div class="bg-white shadow overflow-hidden sm:rounded-lg">
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Owner</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Period</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Type</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Transaction Details</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">ABRY Partners</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">2011 - 2017</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Private Equity</td>
<td class="px-6 py-4 text-sm text-gray-500">Acquired from H.I.G. Capital for $685M</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">H.I.G. Capital</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">2007 - 2011</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Private Equity</td>
<td class="px-6 py-4 text-sm text-gray-500">Leveraged buyout from public markets</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Public (Nasdaq: SECU)</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">1996 - 2007</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Public</td>
<td class="px-6 py-4 text-sm text-gray-500">IPO in 1996 at $12/share</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- Leadership Tab Content -->
<div id="leadership" class="tab-content">
<h2 class="text-xl font-bold text-gray-800 mb-6">Executive Leadership</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<!-- CEO Card -->
<div class="bg-white border border-gray-200 rounded-lg shadow-sm overflow-hidden">
<div class="p-5">
<div class="flex items-center mb-4">
<div class="w-16 h-16 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<i class="fas fa-user text-2xl text-gray-500"></i>
</div>
<div>
<h3 class="text-xl font-bold text-gray-800">Dave Abel</h3>
<p class="text-gray-600">Chief Executive Officer</p>
</div>
</div>
<p class="text-gray-600 mb-4">Joined Securus in 2015 as President before being promoted to CEO in 2018. Previously served as President of Global Crossing's North American operations. Brings over 25 years of telecom leadership experience with a focus on regulated industries.</p>
<div class="flex space-x-2">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">CEO Since 2018</span>
<span class="bg-gray-100 text-gray-800 text-xs font-medium px-2.5 py-0.5 rounded">Platinum Equity Appointee</span>
</div>
</div>
</div>
<!-- CFO Card -->
<div class="bg-white border border-gray-200 rounded-lg shadow-sm overflow-hidden">
<div class="p-5">
<div class="flex items-center mb-4">
<div class="w-16 h-16 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<i class="fas fa-user text-2xl text-gray-500"></i>
</div>
<div>
<h3 class="text-xl font-bold text-gray-800">Sarah Wilkinson</h3>
<p class="text-gray-600">Chief Financial Officer</p>
</div>
</div>
<p class="text-gray-600 mb-4">Appointed CFO in 2020 after serving as VP of Finance. Formerly with GTCR portfolio company where she led finance for their telecom division. Specializes in high-leverage capital structures and cost optimization in regulated industries.</p>
<div class="flex space-x-2">
<span class="bg-purple-100 text-purple-800 text-xs font-medium px-2.5 py-0.5 rounded">CFO Since 2020</span>
<span class="bg-gray-100 text-gray-800 text-xs font-medium px-2.5 py-0.5 rounded">Former PE Portfolio Exec</span>
</div>
</div>
</div>
</div>
<h3 class="text-lg font-medium text-gray-800 mt-10 mb-4">Other Key Executives</h3>
<div class="bg-white shadow overflow-hidden sm:rounded-lg">
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Name</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Title</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Tenure</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Background</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Robert Pickens</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Chief Technology Officer</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">2019-Present</td>
<td class="px-6 py-4 text-sm text-gray-500">Former VP Engineering at Vonage</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Lisa Nelson</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Chief Legal Officer</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">2016-Present</td>
<td class="px-6 py-4 text-sm text-gray-500">Former FCC attorney</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">James Clark</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Head of Corrections</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">2014-Present</td>
<td class="px-6 py-4 text-sm text-gray-500">Former prison warden</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<!-- News Tab Content -->
<div id="news" class="tab-content">
<h2 class="text-xl font-bold text-gray-800 mb-6">Recent Company News</h2>
<div class="space-y-6">
<!-- News Item 1 -->
<div class="bg-white border border-gray-200 rounded-lg shadow-sm overflow-hidden">
<div class="p-5">
<div class="flex justify-between items-start mb-2">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Regulatory</span>
<span class="text-gray-500 text-sm">May 15, 2023</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">FCC Proposes New Rate Caps for Prison Phone Calls, Impacting Securus Revenue</h3>
<p class="text-gray-600 mb-4">The Federal Communications Commission voted 3-2 to propose lowering the maximum rates that companies like Securus can charge for inmate calling services. Analysts estimate this could reduce Securus' annual revenue by 8-12% if implemented...</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">Source: Reuters</span>
<a href="#" class="text-blue-500 hover:text-blue-700 text-sm font-medium">Read Full Article <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
<!-- News Item 2 -->
<div class="bg-white border border-gray-200 rounded-lg shadow-sm overflow-hidden">
<div class="p-5">
<div class="flex justify-between items-start mb-2">
<span class="bg-green-100 text-green-800 text-xs font-medium px-2.5 py-0.5 rounded">Product</span>
<span class="text-gray-500 text-sm">April 28, 2023</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Securus Launches New Digital Platform for Family Communications</h3>
<p class="text-gray-600 mb-4">Aventiv Technologies unveiled "ConnectHome," a new digital platform allowing inmates to communicate with families via secure messaging and video. The move aims to offset declining call revenue and modernize the inmate communications experience...</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">Source: Prison Technology News</span>
<a href="#" class="text-blue-500 hover:text-blue-700 text-sm font-medium">Read Full Article <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
<!-- News Item 3 -->
<div class="bg-white border border-gray-200 rounded-lg shadow-sm overflow-hidden">
<div class="p-5">
<div class="flex justify-between items-start mb-2">
<span class="bg-purple-100 text-purple-800 text-xs font-medium px-2.5 py-0.5 rounded">Financial</span>
<span class="text-gray-500 text-sm">March 10, 2023</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Moody's Downgrades Securus Debt Amid Regulatory Uncertainty</h3>
<p class="text-gray-600 mb-4">Moody's Investors Service downgraded Securus Technologies' corporate family rating to B3 from B2, citing increased regulatory risks and competitive pressures. The rating agency maintained a negative outlook on the company...</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">Source: Moody's Investors Service</span>
<a href="#" class="text-blue-500 hover:text-blue-700 text-sm font-medium">Read Full Article <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
</div>
<div class="mt-6 text-center">
<button class="bg-white border border-gray-300 text-gray-700 px-4 py-2 rounded-md font-medium hover:bg-gray-50">
View All Company News
</button>
</div>
</div>
</div>
</div>
</div>
<!-- PE Firm Page Example -->
<div id="firms" class="container mx-auto px-4 py-12">
<div class="bg-white rounded-lg shadow-lg overflow-hidden">
<!-- Firm Header -->
<div class="gradient-bg text-white p-8">
<div class="flex flex-col md:flex-row justify-between items-start md:items-center">
<div class="flex items-center mb-4 md:mb-0">
<div class="w-20 h-20 rounded-full bg-white flex items-center justify-center mr-6">
<i class="fas fa-chart-pie text-3xl text-blue-800"></i>
</div>
<div>
<h1 class="text-3xl font-bold">Platinum Equity</h1>
<p class="text-blue-200">Private Equity Firm</p>
</div>
</div>
<div class="bg-white bg-opacity-20 rounded-lg p-4">
<div class="quick-stats gap-4">
<div class="text-center">
<div class="text-xs text-blue-200">Founded</div>
<div class="font-medium">1995</div>
</div>
<div class="text-center">
<div class="text-xs text-blue-200">AUM</div>
<div class="font-medium">$25B+</div>
</div>
<div class="text-center">
<div class="text-xs text-blue-200">HQ</div>
<div class="font-medium">Beverly Hills, CA</div>
</div>
<div class="text-center">
<div class="text-xs text-blue-200">Portfolio</div>
<div class="font-medium">40+ Companies</div>
</div>
</div>
</div>
</div>
</div>
<!-- Firm Content -->
<div class="p-8">
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8">
<!-- Left Column -->
<div class="lg:col-span-2">
<h2 class="text-xl font-bold text-gray-800 mb-4">Firm Overview</h2>
<p class="text-gray-600 mb-6">Platinum Equity is a global investment firm with approximately $25 billion of assets under management and a portfolio of approximately 40 operating companies that serve customers around the world. Founded in 1995 by Tom Gores, the firm specializes in mergers, acquisitions, and operations of companies that provide mission-critical products and services.</p>
<div class="bg-gray-50 rounded-lg p-4 mb-6">
<h3 class="text-lg font-medium text-gray-800 mb-3">Investment Strategy</h3>
<ul class="list-disc pl-5 space-y-2 text-gray-600">
<li>Focuses on complex carve-outs, corporate divestitures, and special situations</li>
<li>Targets businesses with $50M-$500M EBITDA across diverse industries</li>
<li>Emphasizes operational improvement through its in-house operations team</li>
<li>Typical hold period of 3-7 years</li>
</ul>
</div>
<h2 class="text-xl font-bold text-gray-800 mb-4">Recent Fundraising</h2>
<div class="overflow-x-auto">
<table class="min-w-full divide-y divide-gray-200">
<thead class="bg-gray-50">
<tr>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Fund</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Vintage</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Size</th>
<th scope="col" class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Focus</th>
</tr>
</thead>
<tbody class="bg-white divide-y divide-gray-200">
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Platinum Equity Capital Partners V</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">2021</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$10.0B</td>
<td class="px-6 py-4 text-sm text-gray-500">Large-cap buyouts</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Platinum Equity Small Cap Fund II</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">2020</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$1.5B</td>
<td class="px-6 py-4 text-sm text-gray-500">Middle-market</td>
</tr>
<tr>
<td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Platinum Equity Capital Partners IV</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">2016</td>
<td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">$6.5B</td>
<td class="px-6 py-4 text-sm text-gray-500">Large-cap buyouts</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- Right Column -->
<div>
<div class="bg-gray-50 rounded-lg p-5 mb-6">
<h3 class="text-lg font-medium text-gray-800 mb-3">Key People</h3>
<div class="space-y-4">
<div>
<div class="text-sm font-medium text-gray-900">Tom Gores</div>
<div class="text-sm text-gray-500">Founder, Chairman & CEO</div>
</div>
<div>
<div class="text-sm font-medium text-gray-900">Jacob Kotzubei</div>
<div class="text-sm text-gray-500">Partner</div>
</div>
<div>
<div class="text-sm font-medium text-gray-900">Louis Samson</div>
<div class="text-sm text-gray-500">Partner</div>
</div>
<div>
<div class="text-sm font-medium text-gray-900">Mark Barnhill</div>
<div class="text-sm text-gray-500">Partner</div>
</div>
</div>
</div>
<div class="bg-gray-50 rounded-lg p-5">
<h3 class="text-lg font-medium text-gray-800 mb-3">Sector Focus</h3>
<div class="space-y-3">
<div>
<div class="flex justify-between text-sm mb-1">
<span>Industrial</span>
<span>35%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-blue-600 h-2 rounded-full" style="width: 35%"></div>
</div>
</div>
<div>
<div class="flex justify-between text-sm mb-1">
<span>Technology</span>
<span>25%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-green-600 h-2 rounded-full" style="width: 25%"></div>
</div>
</div>
<div>
<div class="flex justify-between text-sm mb-1">
<span>Healthcare</span>
<span>15%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-purple-600 h-2 rounded-full" style="width: 15%"></div>
</div>
</div>
<div>
<div class="flex justify-between text-sm mb-1">
<span>Telecom</span>
<span>10%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-yellow-600 h-2 rounded-full" style="width: 10%"></div>
</div>
</div>
<div>
<div class="flex justify-between text-sm mb-1">
<span>Other</span>
<span>15%</span>
</div>
<div class="w-full bg-gray-200 rounded-full h-2">
<div class="bg-red-600 h-2 rounded-full" style="width: 15%"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<h2 class="text-xl font-bold text-gray-800 mt-10 mb-6">Current Portfolio Companies</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Portfolio Company 1 -->
<div class="bg-white border border-gray-200 rounded-lg shadow-sm overflow-hidden hover:shadow-md transition duration-300">
<div class="p-5">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<i class="fas fa-building text-xl text-gray-500"></i>
</div>
<div>
<h3 class="text-lg font-bold text-gray-800">Securus Technologies</h3>
<p class="text-sm text-gray-600">Telecommunications</p>
</div>
</div>
<div class="text-sm text-gray-600 mb-3">Prison communications provider acquired in 2017 for $1.6B</div>
<div class="flex justify-between items-center">
<div class="text-xs text-gray-500">Owned since 2017</div>
<a href="#securus" class="text-blue-500 hover:text-blue-700 text-xs font-medium">View Profile <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
<!-- Portfolio Company 2 -->
<div class="bg-white border border-gray-200 rounded-lg shadow-sm overflow-hidden hover:shadow-md transition duration-300">
<div class="p-5">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<i class="fas fa-shipping-fast text-xl text-gray-500"></i>
</div>
<div>
<h3 class="text-lg font-bold text-gray-800">Solenis</h3>
<p class="text-sm text-gray-600">Specialty Chemicals</p>
</div>
</div>
<div class="text-sm text-gray-600 mb-3">Water treatment chemicals producer acquired from BASF in 2021</div>
<div class="flex justify-between items-center">
<div class="text-xs text-gray-500">Owned since 2021</div>
<a href="#" class="text-blue-500 hover:text-blue-700 text-xs font-medium">View Profile <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
<!-- Portfolio Company 3 -->
<div class="bg-white border border-gray-200 rounded-lg shadow-sm overflow-hidden hover:shadow-md transition duration-300">
<div class="p-5">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-gray-200 flex items-center justify-center mr-4">
<i class="fas fa-tools text-xl text-gray-500"></i>
</div>
<div>
<h3 class="text-lg font-bold text-gray-800">Vertiv</h3>
<p class="text-sm text-gray-600">Data Center Infrastructure</p>
</div>
</div>
<div class="text-sm text-gray-600 mb-3">Former Emerson Electric business acquired in 2016 for $4B</div>
<div class="flex justify-between items-center">
<div class="text-xs text-gray-500">Owned since 2016</div>
<a href="#" class="text-blue-500 hover:text-blue-700 text-xs font-medium">View Profile <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
</div>
<div class="mt-6 text-center">
<button class="bg-white border border-gray-300 text-gray-700 px-4 py-2 rounded-md font-medium hover:bg-gray-50">
View Full Portfolio (42 Companies)
</button>
</div>
<h2 class="text-xl font-bold text-gray-800 mt-10 mb-6">Recent News</h2>
<div class="space-y-6">
<!-- News Item 1 -->
<div class="bg-white border border-gray-200 rounded-lg shadow-sm overflow-hidden">
<div class="p-5">
<div class="flex justify-between items-start mb-2">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Investment</span>
<span class="text-gray-500 text-sm">June 5, 2023</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Platinum Equity Acquires IT Services Firm Presidio for $3.5B</h3>
<p class="text-gray-600 mb-4">Platinum Equity announced the acquisition of Presidio, a leading IT solutions provider, from BC Partners. The deal represents Platinum's largest tech sector investment to date and expands its presence in digital infrastructure...</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">Source: Wall Street Journal</span>
<a href="#" class="text-blue-500 hover:text-blue-700 text-sm font-medium">Read Full Article <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
<!-- News Item 2 -->
<div class="bg-white border border-gray-200 rounded-lg shadow-sm overflow-hidden">
<div class="p-5">
<div class="flex justify-between items-start mb-2">
<span class="bg-green-100 text-green-800 text-xs font-medium px-2.5 py-0.5 rounded">Exit</span>
<span class="text-gray-500 text-sm">March 15, 2023</span>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Platinum Equity Sells Life Sciences Firm to Thermo Fisher for $2.2B</h3>
<p class="text-gray-600 mb-4">Platinum Equity completed the sale of its portfolio company, a specialty diagnostics firm, to Thermo Fisher Scientific. The exit generated an estimated 3.5x return on Platinum's 2019 investment...</p>
<div class="flex justify-between items-center">
<span class="text-sm text-gray-500">Source: Financial Times</span>
<a href="#" class="text-blue-500 hover:text-blue-700 text-sm font-medium">Read Full Article <i class="fas fa-arrow-right ml-1"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="bg-gray-800 text-white pt-12 pb-8">
<div class="container mx-auto px-4">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-8">
<div>
<h3 class="text-lg font-bold mb-4">PEInsights</h3>
<p class="text-gray-400">The leading source for private equity news and company intelligence.</p>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Products</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Company Database</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">News Feed</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Deal Pipeline</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Analytics</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Pricing</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Connect</h3>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fas fa-envelope text-xl"></i>
</a>
</div>
</div>
</div>
<div class="border-t border-gray-700 pt-8">
<div class="flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 PEInsights. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white text-sm">Cookie Policy</a>
</div>
</div>
</div>
</div>
</footer>
<script>
// Tab functionality
document.querySelectorAll('.tab-button').forEach(button => {
button.addEventListener('click', () => {
const tabId = button.getAttribute('data-tab');
// Remove active class from all buttons and content
document.querySelectorAll('.tab-button').forEach(btn => {
btn.classList.remove('border-blue-500', 'text-blue-600');
btn.classList.add('border-transparent', 'text-gray-500');
});
document.querySelectorAll('.tab-content').forEach(content => {
content.classList.remove('active');
});
// Add active class to clicked button and corresponding content
button.classList.remove('border-transparent', 'text-gray-500');
button.classList.add('border-blue-500', 'text-blue-600');
document.getElementById(tabId).classList.add('active');
});
});
// Simple search functionality for demo
document.querySelector('input[type="text"]').add
</html> |