Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 74 additions & 0 deletions src/components/PartnerCard/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
import React, { useState } from 'react';

export default function PartnerCard({ name, product, description, link }) {
const [expanded, setExpanded] = useState(false);

return (
<div
style={{
border: '1px solid #e0e0e0',
borderRadius: '12px',
padding: '20px',
margin: '10px',
width: '100%',
maxWidth: '400px',
boxShadow: '0 2px 8px rgba(0, 0, 0, 0.05)',
display: 'flex',
flexDirection: 'column',
backgroundColor: '#fff',
}}
>
<div>
<h3 style={{ margin: '0 0 10px 0' }}>{name}</h3>
<h4 style={{ margin: '0 0 10px 0', color: '#555' }}>{product}</h4>
<p
style={{
fontSize: '14px',
color: '#666',
lineHeight: '1.6',
overflow: expanded ? 'visible' : 'hidden',
display: '-webkit-box',
WebkitLineClamp: expanded ? 'none' : 3,
WebkitBoxOrient: 'vertical',
}}
>
{description}
</p>
{description.length > 120 && (
<button
onClick={() => setExpanded(!expanded)}
style={{
marginTop: '4px',
background: 'none',
border: 'none',
color: '#0078e7',
cursor: 'pointer',
fontSize: '14px',
padding: 0,
}}
>
{expanded ? 'Collapse' : 'Expand'}
</button>
)}
</div>

<div style={{ marginTop: '8px' }}>
<a
href={link}
target="_blank"
rel="noopener noreferrer"
style={{
padding: '8px 16px',
backgroundColor: '#0078e7',
color: '#fff',
textDecoration: 'none',
borderRadius: '6px',
fontSize: '14px',
}}
>
Visit Website
</a>
</div>
</div>
);
}
35 changes: 29 additions & 6 deletions src/pages/partners/partners.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,34 @@ title: KubeEdge Partners
hide_table_of_contents: true
---

<span style={{fontSize:'18px', display:'block', marginBottom:'10px'}}>KubeEdge works with partners to create a strong, vibrant cloud native edge computing ecosystem. Here we have a list of <span style={{fontWeight:'bold'}}>KubeEdge Distributions, Hosted Platforms and Installers</span> with deep experience helping enterprises successfully adopt KubeEdge.</span>
import PartnerCard from '@site/src/components/PartnerCard';

<span style={{fontSize:'18px', display:'block', marginBottom:'10px'}}>KubeEdge works with partners to create a strong, vibrant cloud native edge computing ecosystem. Here we have a list of <span style={{fontWeight:'bold'}}>KubeEdge Distributions, Hosted Platforms and Installers</span> with deep experience helping enterprises successfully adopt KubeEdge.</span>

| Organization/Company | Product | Description | Website |
| :------------------: | :-----------------------: | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------- |
| DaoCloud | DaoCloud Enterprise 5.0 | DaoCloud Enterprise 5.0 (DCE 5.0) is an advanced and highly scalable cloud native operating system designed to provide a consistent and dependable experience across diverse infrastructures and environments. With its support for heterogeneous clouds, edge clouds, and multicloud management, DCE 5.0 offers unparalleled flexibility. | [Dao Cloud](https://www.daocloud.io/products/standard-edition/index.html) |
| Huawei Cloud | IEF | Edge computing platform built upon KubeEdge, provides extremely lightweight, edge intelligent, and powerful in terms of computing capabilities. | [Huawei_Cloud](https://www.huaweicloud.com/product/ief.html) |
| KubeSphere | KubeSphere Enterprise 4.0 | Based on the open and extensible architecture of KubeSphere LuBan, KubeSphere Enterprise 4.0 can easily achieve upstream and downstream linkage of applications, integrate various high-quality extensions from KubeSphere Marketplace anytime, and provide seamless business capabilities and highly consistent product experience. Edge computing extension based on KubeEdge provide easier-to-use and broader coverage of edge computing capabilities, solving operational issues such as node status management and relationship tree management for users. | [Kubesphere ](https://kubesphere.co/kse/) |
<div
style={{
display: 'grid',
gridTemplateColumns: 'repeat(auto-fit, minmax(300px, 1fr))',
gap: '20px',
justifyContent: 'center',
}}
>
<PartnerCard
name="DaoCloud"
product="DaoCloud Enterprise 5.0"
description="DaoCloud Enterprise 5.0 (DCE 5.0) is an advanced and highly scalable cloud native operating system designed to provide a consistent and dependable experience across diverse infrastructures and environments. With its support for heterogeneous clouds, edge clouds, and multicloud management, DCE 5.0 offers unparalleled flexibility."
link="https://www.daocloud.io/products/standard-edition/index.html"
/>
<PartnerCard
name="Huawei Cloud"
product="IEF"
description="Edge computing platform built upon KubeEdge, provides extremely lightweight, edge intelligent, and powerful in terms of computing capabilities."
link="https://www.huaweicloud.com/product/ief.html"
/>
<PartnerCard
name="KubeSphere"
product="KubeSphere Enterprise 4.0"
description="Based on the open and extensible architecture of KubeSphere LuBan, KubeSphere Enterprise 4.0 can easily achieve upstream and downstream linkage of applications, integrate various high-quality extensions from KubeSphere Marketplace anytime, and provide seamless business capabilities and highly consistent product experience. Edge computing extension based on KubeEdge provide easier-to-use and broader coverage of edge computing capabilities, solving operational issues such as node status management and relationship tree management for users."
link="https://kubesphere.co/kse/"
/>
</div>