-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: moved the our team section to a new page + added it to the nav…
…bar & footer
- Loading branch information
Showing
21 changed files
with
1,108 additions
and
530 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Stack trace: | ||
Frame Function Args | ||
000FFFFA310 0018006286E (0018028EC28, 0018026DE3E, 000FFFFA310, 000FFFF9210) | ||
000FFFFA310 0018004846A (00000000000, 00000000000, 00000000000, 001004E2F5F) | ||
000FFFFA310 001800484A2 (0018028ECD9, 000FFFFA1C8, 000FFFFA310, 00000000000) | ||
000FFFFA310 001800CC6BE (00000000000, 00000000000, 00000000000, 00000000000) | ||
000FFFFA310 001800CC7E5 (000FFFFA320, 00000000000, 00000000000, 00000000000) | ||
00000000000 001800CDDA5 (000FFFFA320, 00000000000, 00000000000, 00000000000) | ||
End of stack trace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React from "react"; | ||
import renderer from "react-test-renderer"; | ||
import OurBackendTeam from "./OurBackendTeam"; | ||
import { MemoryRouter } from "react-router-dom"; | ||
|
||
it("renders correctly", () => { | ||
const test = renderer | ||
.create( | ||
<MemoryRouter> | ||
<OurBackendTeam /> | ||
</MemoryRouter> | ||
) | ||
.toJSON(); | ||
expect(test).toMatchSnapshot(); | ||
}); |
462 changes: 462 additions & 0 deletions
462
src/components/OurBackendTeam/__snapshots__/OurBackendTeam.test.jsx.snap
Large diffs are not rendered by default.
Oops, something went wrong.
5 changes: 2 additions & 3 deletions
5
...ponents/OurBackendTeam/OurBackendTeam.css → ...nents/OurFrontendTeam/OurFrontendTeam.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
.diagonal-box { | ||
/* background-image: linear-gradient(45deg, #6303B1, #ff0099); */ | ||
transform: skewY(-2deg); | ||
} | ||
.content { | ||
/* max-width: 100%; */ | ||
margin: 0 0; | ||
transform: skewY(2deg); | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.