Skip to content

Commit

Permalink
3 clicks, even better
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Jul 18, 2023
1 parent c3517b6 commit f55587e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/src/components/home/GetStartedButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function GetStartedButtons(props: GetStartedButtonsProps) {

const handleCopy = () => {
setCopied(true);
copy(installation as any).then(() => {
copy(installation!).then(() => {
setTimeout(() => setCopied(false), 2000);
});
};
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/home/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export default function Hero() {
with Material UI, our fully-loaded component library, or bring your own design system to
our production-ready components.
</Typography>
<GetStartedButtons callToAction="Discover Material UI" to="/material-ui/" />
<GetStartedButtons callToAction="Discover the Core libraries" to="/core/" />
</Box>
}
rightSx={{
Expand Down
2 changes: 1 addition & 1 deletion docs/src/components/home/StartToday.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function StartToday() {
}
description="Find out why MUI's tools are trusted by thousands of open-source developers and teams around the world."
/>
<GetStartedButtons callToAction="Discover Material UI" to="/material-ui/" />
<GetStartedButtons callToAction="Discover the Core libraries" to="/core/" />
</Grid>
<Grid item xs={12} sm={6} md={6} container spacing={2}>
<Grid item xs={12} md={6}>
Expand Down

0 comments on commit f55587e

Please sign in to comment.