Skip to content

Commit b0035ff

Browse files
docs: revert 1st april changes (#1047)
## Description Remove flames. ### Introduces a breaking change? - [ ] Yes - [x] No ### Type of change - [ ] Bug fix (change which fixes an issue) - [ ] New feature (change which adds functionality) - [x] Documentation update (improves or adds clarity to existing documentation) - [ ] Other (chores, tests, code style improvements etc.) ### Tested on - [ ] iOS - [ ] Android ### Testing instructions <!-- Provide step-by-step instructions on how to test your changes. Include setup details if necessary. --> ### Screenshots <!-- Add screenshots here, if applicable --> ### Related issues <!-- Link related issues here using #issue-number --> ### Checklist - [x] I have performed a self-review of my code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have updated the documentation accordingly - [ ] My changes generate no new warnings ### Additional notes <!-- Include any additional information, assumptions, or context that reviewers might need to understand this PR. -->
1 parent 4cbbfcd commit b0035ff

31 files changed

+115
-1249
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div align="center">
2-
<img src="https://github.com/software-mansion/react-native-executorch/blob/main/docs/static/img/logo-hero-flame.png" alt="RNE Logo 🔥" width="25%">
2+
<img src="https://github.com/software-mansion/react-native-executorch/blob/main/docs/static/img/logo-hero.svg" alt="RNE Logo" width="25%">
33
</div>
44

55

docs/docusaurus.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const config = {
66
title: 'React Native ExecuTorch',
77
tagline:
88
'Declarative way to run AI models in React Native on device, powered by ExecuTorch',
9-
favicon: 'img/favicon.png',
9+
favicon: 'img/favicon.ico',
1010

1111
url: 'https://docs.swmansion.com',
1212

@@ -139,8 +139,8 @@ const config = {
139139
title: 'React Native ExecuTorch',
140140
hideOnScroll: true,
141141
logo: {
142-
alt: 'React Native ExecuTorch 🔥💀',
143-
src: 'img/logo-hero-flame.png',
142+
alt: 'React Native ExecuTorch',
143+
src: 'img/logo-hero.svg',
144144
},
145145
items: [
146146
{

docs/src/components/Carousel/styles.module.css

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
margin-right: 2rem;
1111
width: 48px;
1212
height: 48px;
13-
background-color: #ff6600;
13+
background-color: #2563eb;
1414
color: white;
1515
border-radius: 50%;
1616
display: flex;
@@ -25,15 +25,15 @@
2525
}
2626

2727
.prevButton:hover {
28-
background-color: #ff3300;
28+
background-color: #1d4ed8;
2929
}
3030

3131
.nextButton {
3232
margin: auto;
3333
margin-left: 2rem;
3434
width: 48px;
3535
height: 48px;
36-
background-color: #ff6600;
36+
background-color: #2563eb;
3737
color: white;
3838
border-radius: 50%;
3939
display: flex;
@@ -44,7 +44,7 @@
4444
}
4545

4646
.nextButton:hover {
47-
background-color: #ff3300;
47+
background-color: #1d4ed8;
4848
}
4949

5050
.icon {
@@ -97,7 +97,7 @@
9797
.link {
9898
display: inline-block;
9999
padding: 0.75rem 1.5rem;
100-
background-color: #ff6600;
100+
background-color: #2563eb;
101101
color: white;
102102
border-radius: 0.5rem;
103103
font-weight: 500;
@@ -106,7 +106,7 @@
106106
}
107107

108108
.link:hover {
109-
background-color: #ff3300;
109+
background-color: #1d4ed8;
110110
}
111111

112112
.image {
@@ -130,7 +130,7 @@
130130
}
131131

132132
.swiper :global(.swiper-pagination-bullet-active) {
133-
background-color: #ff6600;
133+
background-color: #2563eb;
134134
opacity: 1;
135135
}
136136

0 commit comments

Comments
 (0)