Skip to content

Commit

Permalink
Showcase: add Wix's apps section.
Browse files Browse the repository at this point in the history
  • Loading branch information
asafkorem committed Sep 28, 2022
1 parent ff9886c commit 086173b
Show file tree
Hide file tree
Showing 7 changed files with 90 additions and 9 deletions.
34 changes: 26 additions & 8 deletions website/showcase.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,32 @@
"linkPlayStore": "https://play.google.com/store/apps/details?id=com.shopify.pos&gl=US"
}
],
"wix": [
{
"name": "Spaces: Follow Businesses",
"icon": "spaces.webp",
"linkAppStore": "https://itunes.apple.com/us/app/wix-com/id1099748482",
"linkPlayStore": "https://play.google.com/store/apps/details?id=com.wix.android"
},
{
"name": "Dine by Wix",
"icon": "dine.webp",
"linkAppStore": "https://apps.apple.com/us/app/dine-by-wix/id1561524113",
"linkPlayStore": "https://play.google.com/store/apps/details?id=com.wix.restaurants"
},
{
"name": "Fit by Wix",
"icon": "fit.webp",
"linkAppStore": "https://apps.apple.com/us/developer/wix-com-inc/id407141669",
"linkPlayStore": "https://play.google.com/store/apps/details?id=com.wix.fitness"
},
{
"name": "Wix Owner - Website Builder",
"icon": "owner.webp",
"linkAppStore": "https://apps.apple.com/us/app/wix-owner-website-builder/id1545924344",
"linkPlayStore": "https://play.google.com/store/apps/details?id=com.wix.admin"
}
],
"others": [
{
"name": "Coinbase",
Expand Down Expand Up @@ -209,14 +235,6 @@
"infoTitle": "React Native at Walmart Labs",
"pinned": true
},
{
"name": "Spaces: Follow Businesses",
"icon": "spaces.webp",
"linkAppStore": "https://itunes.apple.com/us/app/wix-com/id1099748482?mt=8",
"linkPlayStore": "https://play.google.com/store/apps/details?id=com.wix.android",
"infoLink": "https://medium.com/wix-engineering/react-native-at-wix-the-architecture-db6361764da6",
"infoTitle": "React Native at Wix — The Architecture"
},
{
"name": "Words with Friends 2",
"icon": "words2.png",
Expand Down
21 changes: 20 additions & 1 deletion website/src/pages/showcase.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const randomizeApps = apps =>
const Showcase = () => {
const {siteConfig} = useDocusaurusContext();

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

Expand Down Expand Up @@ -169,6 +169,25 @@ const Showcase = () => {
</p>
<div className="logos">{shopify.map(renderApp)}</div>
</div>
<div className="showcaseSection">
<h2 className="withLogo">
<ThemedImage
alt="Wix logo"
width={80}
sources={{
light: useBaseUrl('/img/showcase/wix_logo_lightbg.svg'),
dark: useBaseUrl('/img/showcase/wix_logo_darkbg.svg'),
}}
/>
</h2>
<p className="showcaseSectionDescription">
With one of the largest React Native code bases in the world, Wix
has a long history with the development community and maintains
variety of open source projects. Wix is an early adopter of React
Native and uses it for its entire suite of applications.
</p>
<div className="logos">{wix.map(renderApp)}</div>
</div>
<div className="showcaseSection showcaseCustomers">
<h2>Users Showcase</h2>
<div className="logos">
Expand Down
Binary file added website/static/img/showcase/dine.webp
Binary file not shown.
Binary file added website/static/img/showcase/fit.webp
Binary file not shown.
Binary file added website/static/img/showcase/owner.webp
Binary file not shown.
22 changes: 22 additions & 0 deletions website/static/img/showcase/wix_logo_darkbg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions website/static/img/showcase/wix_logo_lightbg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 086173b

Please sign in to comment.