+ Flexible. Secure. Performant. Open. Our composable architecture gives you the control and confidence to build exceptional experiences.
+
+
+
+
+
+
+
+ );
+};
+
+export default Architecture;
diff --git a/src/components/composable/DeveloperGrid.jsx b/src/components/composable/DeveloperGrid.jsx
new file mode 100644
index 00000000..dcafbdea
--- /dev/null
+++ b/src/components/composable/DeveloperGrid.jsx
@@ -0,0 +1,29 @@
+import React from 'react';
+import { BoltIcon, PuzzlePieceIcon, CircleStackIcon, ShieldCheckIcon, CodeBracketIcon, LockClosedIcon, CloudIcon } from '@heroicons/react/24/outline';
+
+const DeveloperGrid = () => {
+ const capabilities = [
+ { icon: , title: 'Data Freedom', description: 'Leverage a flexible data model to gain complete control over your commerce data. Connect any data source, create custom data structures, utilize our Custom API builder / Database-as-a-Service (DBaaS), and unlock powerful insights to drive business growth.', cta: '' },
+ { icon: , title: 'Developer-Friendly', description: 'Empower your development team with tech-agnostic tools. Choose the best technologies for your needs and accelerate time-to-market with our low-code/no-code framework. Used our JS-SDK, Next.js App and Command Line Interface (CLI) to get up and running quickly.', cta: '' },
+ { icon: , title: 'Unwavering Security', description: 'Rest easy with enterprise-grade security features built into the core of our platform. Protect your business and your customers with robust security protocols and industry-leading compliance certifications including GDPR Compliance, SOC2 and HIPPA Certification.', cta: '' },
+ ];
+
+ return (
+
+
+
+ {capabilities.map((capability, index) => (
+
+ {capability.icon}
+
{capability.title}
+
{capability.description}
+ {capability.cta && ()}
+
+ ))}
+
+
+
+ );
+};
+
+export default DeveloperGrid;
diff --git a/src/components/composable/HeroSection.jsx b/src/components/composable/HeroSection.jsx
new file mode 100644
index 00000000..0ee90691
--- /dev/null
+++ b/src/components/composable/HeroSection.jsx
@@ -0,0 +1,45 @@
+import React from 'react';
+
+const HeroSection = () => {
+ return (
+ // Hero section container with black background and gradient
+
+
+
+
+ Elastic Path{' '}
+ Composable Commerce
+
+
+ API-first. Limitless potential. Easily tailor and scale your commerce solution to meet your exact
+ requirements, now and in the future.
+
+ );
+};
+
+export default ScrollingLogos;
diff --git a/src/components/composable/Products.jsx b/src/components/composable/Products.jsx
new file mode 100644
index 00000000..18f464fb
--- /dev/null
+++ b/src/components/composable/Products.jsx
@@ -0,0 +1,50 @@
+import React from 'react';
+
+const Products = () => {
+ const capabilities = [
+ { title: 'Cart & Checkout', description: 'Integrate our fast cart and checkout with your e-commerce stack, regardless of platform, payment provider, or catalog complexity. Boost conversions and delight customers without the need for a costly replatform.', cta: '' },
+ { title: 'Product Merchandising', description: 'Curate shopping journeys that truly resonate with your customers. Design captivating product pages, craft compelling narratives and merchandise your products together, however you choose.', cta: '' },
+ { title: 'Automated Re-Orders', description: 'Turn everyday purchases into lasting customer relationships. Automated reorders build loyalty and drive recurring revenue. Create "subscribe and save" offers, personalized schedules and curated boxes with ease.', cta: '' },
+ { title: 'Membership Subscriptions', description: 'Unlock a new revenue stream and build lasting customer loyalty with memberships. Create exclusive tiers offering premium content, special deals, and unique product experiences. Turn one-time buyers into loyal members.', cta: '' },
+ { title: 'Custom APIs & DBaaS', description: 'Coordinating data between systems to use on your commerce site is difficult. Create and launch custom APIs with unparalleled flexibility. Leave database management to us with our hosted service and accelerate development time.', cta: '' },
+ { title: 'Bundles & Configurations', description: 'Create fixed or dynamic bundles customized to your merchandisers\' needs. Provide configurable products and assembly options, simplifying the delivery of complex or custom-built items with unmatched flexibility.', cta: ''},
+ { title: 'Complex Catalogs', description: 'Design catalogs that match your complex products and merchandising needs perfectly. Organize with unlimited categories for easy navigation and precise searches. Combine with Price Books for a tailored experience and specialized pricing.', cta: '' },
+ { title: 'Complex Promotions', description: 'Our rules-based promotion service empowers you to craft precisely targeted offers, from simple discounts to complex tiered rewards and beyond. Drive engagement, boost average order value, and incentivize desired behaviors with unparalleled promotional power.', cta: '' },
+ { title: 'Pricing Management', description: 'Pair any price book with any catalog(s), enabling limitless possibilities for omnichannel experiences, targeted flash sales, and tiered pricing. Easily manage complex bundle pricing and adjust strategies dynamically to boost revenue and drive conversions.', cta: '' },
+ { title: 'Orders & Inventory', description: 'Take control over your inventory and offer unparalleled flexibility to your customers. Maintain precise stock visibility across all locations and empower shoppers with convenient options like "buy online, pick up in store" & "click and collect".', cta: '' },
+ { title: 'B2B2C Management', description: 'Expand your market presence and effortlessly manage complex distribution networks with our powerful B2B2C solution. Whether you work with resellers, franchises, or need to segment data by country, our platform provides the flexibility and control you need.', cta: '' },
+ { title: 'Payment Gateways', description: 'Choose from ten out-of-the-box payment gateways or manual payment options to customize your checkout and optimize transaction flow. Effortlessly integrate your preferred providers which boosts conversions and improves customer satisfaction.', cta: '' },
+ ];
+
+ return (
+
+
+
Meet the APIs That Power Commerce Innovation
+
+ Our modular approach empowers you to create unique and engaging shopping journeys across all channels, enhancing customer experiences and drive business growth. With Elastic Path, you can accelerate your time-to-market, adapt to changing demands with ease, and future-proof your commerce solution.
+
+
+
+
+
+ {capabilities.map((capability, index) => (
+
+
+ {capability.title}
+
+ →
+
+
+
{capability.description}
+ {capability.cta && ()}
+
+ ))}
+
+
+
+ );
+};
+
+export default Products;
diff --git a/src/components/composable/ScrollingLogos.css b/src/components/composable/ScrollingLogos.css
new file mode 100644
index 00000000..d006e83a
--- /dev/null
+++ b/src/components/composable/ScrollingLogos.css
@@ -0,0 +1,50 @@
+.scrolling-logos-container {
+ overflow: hidden;
+ width: 100%; /* Ensure it spans full width of the page */
+ padding: 20px 0;
+ background-color: #f8f8f8;
+}
+
+.scrolling-logos-track {
+ display: flex;
+ gap: 40px; /* Set space between logos */
+ animation: scroll 30s linear infinite; /* Continuous scrolling */
+}
+
+.logo-item {
+ display: inline-block;
+ justify-content: center; /* Center the track horizontally */
+ align-items: center;
+}
+
+.logo-item img {
+ max-height: 80px; /* Set max height */
+ height: auto;
+ width: auto; /* Ensure aspect ratio is maintained */
+ filter: grayscale(100%); /* Apply grayscale */
+ justify-content: center;
+ align-items: center;
+ transition: filter 0.3s ease; /* Smooth transition for hover effect */
+}
+
+.logo-item img:hover {
+ filter: grayscale(0%); /* Restore original color on hover */
+}
+
+@keyframes scroll {
+ 0% {
+ transform: translateX(0);
+ }
+ 100% {
+ transform: translateX(-100%);
+ }
+}
+
+/* Duplicate the logos to make the scrolling seamless */
+.scrolling-logos-track::after {
+ content: "";
+ display: block;
+ position: absolute;
+ white-space: nowrap;
+ transform: translateX(100%); /* Start where the original logos end */
+}
diff --git a/src/components/composable/StatsComponent.jsx b/src/components/composable/StatsComponent.jsx
new file mode 100644
index 00000000..40e4868d
--- /dev/null
+++ b/src/components/composable/StatsComponent.jsx
@@ -0,0 +1,49 @@
+import React from 'react';
+import { CheckCircleIcon, CubeIcon, ChartBarIcon, GlobeAltIcon } from '@heroicons/react/24/solid';
+import CountUp from 'react-countup';
+
+const StatsComponent = () => {
+ return (
+
Escape Rigid Commerce and Empower Your Merchandisers
+
+ Traditional commerce platforms confine merchandisers with rigid product and catalog management, stifling creativity and hindering the ability to craft truly unique shopping experiences.
+
+
+ Elastic Path breaks the mold.
+
+
+ We've reimagined commerce at the core, empowering your merchandisers with complete and unfettered flexibility. With Elastic Path, your merchandisers gain the flexibility to build the exact product experiences they envision, driving engagement, conversions, and customer loyalty.
+
+ Elastic Path is more than just a commerce platform – it's a comprehensive ecosystem designed to empower your business at every level. From seamless backend integrations to a flexible core and a truly composable frontend, we provide everything you need to create exceptional omnichannel customer experiences.
+
+ 100% Update during Black Friday and all major holiday sales events. Experience best-in-class resiliency that keeps your commerce operations running smoothly, even during peak traffic or unexpected disruptions.
+
+
+
+
+ );
+};
+
+export default Uptime;
diff --git a/src/components/composable/commerce-grid.jsx b/src/components/composable/commerce-grid.jsx
new file mode 100644
index 00000000..70628031
--- /dev/null
+++ b/src/components/composable/commerce-grid.jsx
@@ -0,0 +1,29 @@
+import React from 'react';
+import { BoltIcon, PuzzlePieceIcon, CircleStackIcon, ShieldCheckIcon, CodeBracketIcon, LockClosedIcon, CloudIcon } from '@heroicons/react/24/outline';
+
+const HeadlessCommerceCapabilities = () => {
+ const capabilities = [
+ { icon: , title: 'Unmatched Agility', description: 'Our versionless platform eliminates upgrade headaches and allows for continuous innovation. Adapt to market changes swiftly and effortlessly with seamless updates and new feature releases.', cta: '' },
+ { icon: , title: 'Limitless Extensibility', description: 'Extend your commerce capabilities without limits. Integrate any third-party system, customize every aspect of your storefront, and build unique shopping experiences that set you apart.', cta: '' },
+ { icon: , title: 'Rock-Solid Foundation', description: 'Built on a cloud-native infrastructure, Elastic Path delivers unmatched scalability, reliability, and performance. Scale your business with confidence, knowing your platform can handle peak demand.', cta: '' },
+ ];
+
+ return (
+