Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 6 additions & 3 deletions src/components/Footer/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,25 @@ function Footer() {
<Grid container spacing={5} justify="center">
<Grid item xs={12} md={6} lg={4}>
<Typography variant="h4" style={{ marginBottom: 10 }}>
Playground 🚀
Playground <span role="img" aria-label="playground">🚀</span>
</Typography>

<Divider />

<a
href="https://github.com/react-native-elements/playground"
target="_blank"
rel="noopener noreferrer"
>
<Typography>GitHub Repositoy</Typography>
</a>

<a href="https://reactnativeelements.com/" target="_blank">
<a href="https://reactnativeelements.com/" target="_blank" rel="noopener noreferrer">
<Typography>Official Docs</Typography>
</a>
<br />

<a href="https://www.netlify.com">
<a href="https://www.netlify.com" target="_blank" rel="noopener noreferrer">
<img
src="https://www.netlify.com/img/global/badges/netlify-color-accent.svg"
alt="Deploys by Netlify"
Expand All @@ -46,6 +47,7 @@ function Footer() {
<a
href="https://github.com/react-native-elements/react-native-elements/"
target="_blank"
rel="noopener noreferrer"
>
<Typography variant="h6">React Native Elements</Typography>
<Typography
Expand All @@ -58,6 +60,7 @@ function Footer() {
<img
src={require("../../assets/RNE_Logo.png")}
className={styles.footer_product_img}
alt="react-native-elements-logo"
/>

<img
Expand Down
6 changes: 3 additions & 3 deletions src/containers/Drawer/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ function ResponsiveDrawer(props) {
const drawer = (
<div>
<div style={{ padding: "0.5rem" }}>
<Link to="/">
<Typography variant="h5">Playground 🚀</Typography>
<Link to="/" onClick={() => handleDrawerToggle(false)}>
<Typography variant="h5">Playground <span role="img" aria-label="playground" >🚀</span></Typography>
</Link>
</div>
<List>
Expand Down Expand Up @@ -140,7 +140,7 @@ function ResponsiveDrawer(props) {
</Typography>
</Link>
<div style={{ marginLeft: "auto" }}>
<a href="https://reactnativeelements.com/" target="_blank">
<a href="https://reactnativeelements.com/" target="_blank" rel="noopener noreferrer">
<Button color="inherit">Docs</Button>
</a>
<IconButton
Expand Down
2 changes: 1 addition & 1 deletion src/containers/Navigation/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export default function App() {
})}
<Route exact path="/explore">
<Helmet>
<title>Explore | Playground 🚀 - React Native Elements</title>
<title>Explore | Playground <span role="img" aria-label="playground">🚀</span> - React Native Elements</title>
</Helmet>
<ExplorePage />
</Route>
Expand Down
3 changes: 2 additions & 1 deletion src/pages/home/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function HomePage() {
<div style={{ width: "100%", textAlign: "center", marginBottom: "2rem" }}>
<Link to="/explore">
<Button variant="outlined" color="secondary">
<Typography variant="h6">Explore Now 🌇</Typography>
<Typography variant="h6">Explore Now <span role="img" aria-label="explore">🌇</span></Typography>
</Button>
</Link>
</div>
Expand Down Expand Up @@ -93,6 +93,7 @@ const FeatureCard = (props) => {
margin: "auto",
display: "flex",
}}
alt="playground-banner"
src={props.banner}
/>
<div style={{ bottom: 0, marginTop: "1rem" }}>
Expand Down