Skip to content

Commit d8098b6

Browse files
committed
chore: update React Training refs to Remix
1 parent 1bd0fb5 commit d8098b6

File tree

16 files changed

+27
-24
lines changed

16 files changed

+27
-24
lines changed

LICENSE

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

3-
Copyright (c) React Training
3+
Copyright (c) React Training 2015-2019
4+
Copyright (c) Remix Software 2020-2022
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

packages/react-router-config/LICENSE

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

3-
Copyright (c) React Training
3+
Copyright (c) React Training 2015-2019
4+
Copyright (c) Remix Software 2020-2022
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

packages/react-router-config/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"directory": "packages/react-router-config"
1010
},
1111
"license": "MIT",
12-
"author": "React Training <hello@reacttraining.com>",
12+
"author": "Remix Software <hello@remix.run>",
1313
"files": [
1414
"LICENSE",
1515
"README.md",

packages/react-router-dom/LICENSE

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

3-
Copyright (c) React Training
3+
Copyright (c) React Training 2015-2019
4+
Copyright (c) Remix Software 2020-2022
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

packages/react-router-dom/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ If you find a bug, please file an issue on [our issue tracker on GitHub](https:/
3434

3535
## Credits
3636

37-
React Router is built and maintained by [React Training](https://reacttraining.com).
37+
React Router is built and maintained by [Remix Software](https://remix.run).

packages/react-router-dom/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"directory": "packages/react-router-dom"
1010
},
1111
"license": "MIT",
12-
"author": "React Training <hello@reacttraining.com>",
12+
"author": "Remix Software <hello@remix.run>",
1313
"files": [
1414
"LICENSE",
1515
"README.md",

packages/react-router-native/LICENSE

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

3-
Copyright (c) React Training
3+
Copyright (c) React Training 2015-2019
4+
Copyright (c) Remix Software 2020-2022
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

packages/react-router-native/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ If you find a bug, please file an issue on [our issue tracker on GitHub](https:/
2626

2727
## Credits
2828

29-
React Router is built and maintained by [React Training](https://reacttraining.com).
29+
React Router is built and maintained by [Remix Software](https://remix.run).

packages/react-router-native/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"directory": "packages/react-router-native"
1010
},
1111
"license": "MIT",
12-
"author": "React Training <hello@reacttraining.com>",
12+
"author": "Remix Software <hello@remix.run>",
1313
"main": "main.js",
1414
"sideEffects": false,
1515
"scripts": {

packages/react-router/LICENSE

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

3-
Copyright (c) React Training
3+
Copyright (c) React Training 2015-2019
4+
Copyright (c) Remix Software 2020-2022
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

packages/react-router/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ If you find a bug, please file an issue on [our issue tracker on GitHub](https:/
3636

3737
## Credits
3838

39-
React Router is built and maintained by [React Training](https://reacttraining.com).
39+
React Router is built and maintained by [Remix Software](https://remix.run).

packages/react-router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"directory": "packages/react-router"
1010
},
1111
"license": "MIT",
12-
"author": "React Training <hello@reacttraining.com>",
12+
"author": "Remix Software <hello@remix.run>",
1313
"files": [
1414
"LICENSE",
1515
"README.md",

website/modules/components/EnvironmentHeader.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ function Branding() {
6363
fontWeight="bold"
6464
fontSize="90%"
6565
>
66-
<Inline component="a" props={{ href: "https://reacttraining.com" }}>
67-
React Training
66+
<Inline component="a" props={{ href: "https://remix.run" }}>
67+
Remix
6868
</Inline>
6969
<Inline> / </Inline>
7070
<Inline

website/modules/components/Footer.js

+5-7
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@ function FooterLink({ href, ...rest }) {
1515
);
1616
}
1717

18-
function ReactTraining() {
19-
return (
20-
<FooterLink href="https://reacttraining.com">React Training</FooterLink>
21-
);
18+
function Remix() {
19+
return <FooterLink href="https://remix.run">Remix Software</FooterLink>;
2220
}
2321

2422
function Contributors() {
@@ -51,11 +49,11 @@ export default function Footer() {
5149
fontSize="80%"
5250
>
5351
<Block component="p">
54-
React Router is built and maintained by <ReactTraining /> and hundreds
55-
of <Contributors />.
52+
React Router is built and maintained by <Remix /> and hundreds of{" "}
53+
<Contributors />.
5654
</Block>
5755
<Block marginTop="20px" color={LIGHT_GRAY}>
58-
&copy; {year} React Training
56+
&copy; {year} Remix Software
5957
</Block>
6058
<Block color={LIGHT_GRAY}>
6159
Code examples and documentation <CC />

website/modules/components/Home/Header.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ function NavBar() {
5151
return (
5252
<Row textTransform="uppercase" fontWeight="bold" width="100%">
5353
<Block flex="1" fontSize="14px">
54-
<Inline component="a" props={{ href: "https://reacttraining.com" }}>
55-
React Training
54+
<Inline component="a" props={{ href: "https://remix.run" }}>
55+
Remix
5656
</Inline>
5757
<Inline> / </Inline>
5858
<Inline

website/modules/components/Logo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default function Logo({ size = 230, shadow = true }) {
1818
}
1919
>
2020
<Block position="relative" top="-4%" textAlign="center" width="100%">
21-
<img src={LogoImage} alt="React Training" width="75%" />
21+
<img src={LogoImage} alt="React Router logo" width="75%" />
2222
</Block>
2323
</Row>
2424
);

0 commit comments

Comments
 (0)