Skip to content

Commit 086173b

Browse files
committed
Showcase: add Wix's apps section.
1 parent ff9886c commit 086173b

File tree

7 files changed

+90
-9
lines changed

7 files changed

+90
-9
lines changed

website/showcase.json

Lines changed: 26 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,32 @@
8585
"linkPlayStore": "https://play.google.com/store/apps/details?id=com.shopify.pos&gl=US"
8686
}
8787
],
88+
"wix": [
89+
{
90+
"name": "Spaces: Follow Businesses",
91+
"icon": "spaces.webp",
92+
"linkAppStore": "https://itunes.apple.com/us/app/wix-com/id1099748482",
93+
"linkPlayStore": "https://play.google.com/store/apps/details?id=com.wix.android"
94+
},
95+
{
96+
"name": "Dine by Wix",
97+
"icon": "dine.webp",
98+
"linkAppStore": "https://apps.apple.com/us/app/dine-by-wix/id1561524113",
99+
"linkPlayStore": "https://play.google.com/store/apps/details?id=com.wix.restaurants"
100+
},
101+
{
102+
"name": "Fit by Wix",
103+
"icon": "fit.webp",
104+
"linkAppStore": "https://apps.apple.com/us/developer/wix-com-inc/id407141669",
105+
"linkPlayStore": "https://play.google.com/store/apps/details?id=com.wix.fitness"
106+
},
107+
{
108+
"name": "Wix Owner - Website Builder",
109+
"icon": "owner.webp",
110+
"linkAppStore": "https://apps.apple.com/us/app/wix-owner-website-builder/id1545924344",
111+
"linkPlayStore": "https://play.google.com/store/apps/details?id=com.wix.admin"
112+
}
113+
],
88114
"others": [
89115
{
90116
"name": "Coinbase",
@@ -209,14 +235,6 @@
209235
"infoTitle": "React Native at Walmart Labs",
210236
"pinned": true
211237
},
212-
{
213-
"name": "Spaces: Follow Businesses",
214-
"icon": "spaces.webp",
215-
"linkAppStore": "https://itunes.apple.com/us/app/wix-com/id1099748482?mt=8",
216-
"linkPlayStore": "https://play.google.com/store/apps/details?id=com.wix.android",
217-
"infoLink": "https://medium.com/wix-engineering/react-native-at-wix-the-architecture-db6361764da6",
218-
"infoTitle": "React Native at Wix — The Architecture"
219-
},
220238
{
221239
"name": "Words with Friends 2",
222240
"icon": "words2.png",

website/src/pages/showcase.js

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const randomizeApps = apps =>
7676
const Showcase = () => {
7777
const {siteConfig} = useDocusaurusContext();
7878

79-
const {meta, microsoft, shopify, others} = siteConfig.customFields.users;
79+
const {meta, microsoft, shopify, wix, others} = siteConfig.customFields.users;
8080
const [pinnedRandomizedApps, setPinnedRandomizedApps] = useState([]);
8181
const [randomizedApps, setRandomizedApps] = useState([]);
8282

@@ -169,6 +169,25 @@ const Showcase = () => {
169169
</p>
170170
<div className="logos">{shopify.map(renderApp)}</div>
171171
</div>
172+
<div className="showcaseSection">
173+
<h2 className="withLogo">
174+
<ThemedImage
175+
alt="Wix logo"
176+
width={80}
177+
sources={{
178+
light: useBaseUrl('/img/showcase/wix_logo_lightbg.svg'),
179+
dark: useBaseUrl('/img/showcase/wix_logo_darkbg.svg'),
180+
}}
181+
/>
182+
</h2>
183+
<p className="showcaseSectionDescription">
184+
With one of the largest React Native code bases in the world, Wix
185+
has a long history with the development community and maintains
186+
variety of open source projects. Wix is an early adopter of React
187+
Native and uses it for its entire suite of applications.
188+
</p>
189+
<div className="logos">{wix.map(renderApp)}</div>
190+
</div>
172191
<div className="showcaseSection showcaseCustomers">
173192
<h2>Users Showcase</h2>
174193
<div className="logos">
5.78 KB
Loading
3.04 KB
Loading
4.95 KB
Loading
Lines changed: 22 additions & 0 deletions
Loading
Lines changed: 22 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)