import { mdiEarth, mdiLeaf, mdiMapMarker, mdiShieldCheck, mdiTruckFastOutline, } from '@mdi/js'; import type { ReactElement } from 'react'; import React from 'react'; import BaseIcon from '../components/BaseIcon'; import MarketingButton from '../components/marketing/MarketingButton'; import MarketingLayout from '../components/marketing/MarketingLayout'; import MarketingSection from '../components/marketing/MarketingSection'; import MarketingSeo from '../components/marketing/MarketingSeo'; import NewsletterForm from '../components/marketing/NewsletterForm'; import { brand, exportServices, featureHighlights, galleryItems, origins, testimonials, } from '../components/marketing/marketingData'; import LayoutGuest from '../layouts/Guest'; const statItems = [ { label: 'Origin-driven sourcing', value: 'Ethiopia first' }, { label: 'Export route', value: 'Addis Ababa → Djibouti → Global markets' }, { label: 'Buyer focus', value: 'Roasters, importers, distributors, wholesalers' }, ]; const trustPillars = [ { icon: mdiShieldCheck, title: 'Trust & transparency', description: 'Clear communication, honest documentation, and disciplined follow-through for international buyers.', }, { icon: mdiMapMarker, title: 'Origin expertise', description: 'Regional understanding supports lot selection aligned with buyer taste profiles and sourcing goals.', }, { icon: mdiTruckFastOutline, title: 'Export reliability', description: 'A structured logistics chain supports timely movement from origin to destination.', }, { icon: mdiLeaf, title: 'Responsible sourcing', description: 'Sustainability is treated as a business responsibility, not a campaign message.', }, ]; export default function HomePage() { return ( <>
Ethiopian coffee farm

Specialty green coffee export

Ethiopian Premium Coffee – Sourced with Experience, Exported with Integrity

Achieving premium coffee excellence from its origin.

{brand.name} bridges Ethiopian premium coffee producers with global buyers, focusing on traceability, single-origin green coffee sourcing, export-ready preparation, and uncompromising quality.

Request Samples Get a Quote

Why buyers trust us

{statItems.map((item) => (

{item.label}

{item.value}

))}
{trustPillars.map((item) => (

{item.title}

{item.description}

))}
{featureHighlights.map((item) => (

{item.title}

{item.description}

))}
{galleryItems.map((item) => (
{item.title}

{item.title}

{item.caption}

))}
{origins.slice(0, 3).map((item) => (
{item.name}

{item.altitude}

{item.name}

{item.profile}

))}
Explore all origins
{exportServices.slice(0, 4).map((item) => (

{item}

))}
{testimonials.map((item) => (

“{item.quote}”

{item.author}
))}

Receive buyer-focused green coffee updates

Join the list for availability updates, new origin highlights, and company announcements shaped for professional buyers.

); } HomePage.getLayout = function getLayout(page: ReactElement) { return {page}; };