-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from nr2f1/header
header
- Loading branch information
Showing
26 changed files
with
7,256 additions
and
8,127 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
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
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 |
---|---|---|
|
@@ -58,17 +58,18 @@ | |
"@apollo/client": "^3.10.8", | ||
"@apollo/experimental-nextjs-app-support": "^0.8.0", | ||
"@formatjs/intl-localematcher": "^0.5.4", | ||
"@mui/base": "5.0.0-beta.40", | ||
"graphql": "^16.9.0", | ||
"negotiator": "^0.6.3", | ||
"next": "14.0.4", | ||
"react": "18.2.0", | ||
"react-dom": "18.2.0", | ||
"tslib": "^2.6.3" | ||
}, | ||
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a", | ||
"pnpm": { | ||
"overrides": { | ||
"next@>=13.4.0 <14.1.1": ">=14.1.1" | ||
} | ||
} | ||
}, | ||
"packageManager": "[email protected]+sha512.c85cd21b6da10332156b1ca2aa79c0a61ee7ad2eb0453b88ab299289e9e8ca93e6091232b25c07cbf61f6df77128d9c849e5c9ac6e44854dbd211c49f3a67adc" | ||
} |
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,13 @@ | ||
# Website assets | ||
|
||
## Description | ||
|
||
To keep the costs as low as possible, the website assets are stored in this NX project. This way, the assets are deployed to GitHub pages (https://nr2f1.github.io/website/) and can be used in the website. | ||
|
||
## Development | ||
|
||
Add assets to the `/public` folder and run `nx build website-assets` to build the assets. The assets are then available in the `dist/assets` folder. | ||
|
||
## Deployment | ||
|
||
Once you worked and merged your changes, the assets are automatically deployed to GitHub pages. The assets are available at https://nr2f1.github.io/website/. |
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
This file was deleted.
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
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
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,42 @@ | ||
.header { | ||
|
||
&__top { | ||
justify-content: space-between; | ||
align-items: center; | ||
background-color: var(--background-inverse-primary); | ||
display: flex; | ||
padding: var(--spacing-4) var(--spacing-6); | ||
|
||
& nav ul { | ||
display: flex; | ||
list-style: none; | ||
margin: 0; | ||
padding: 0; | ||
column-gap: var(--spacing-4); | ||
} | ||
|
||
&_right { | ||
display: flex; | ||
align-items: center; | ||
column-gap: var(--spacing-4); | ||
} | ||
|
||
} | ||
|
||
&__logo { | ||
max-width: 170px; | ||
flex-basis: 100%; | ||
} | ||
|
||
&__bottom { | ||
background-color: var(--background-inverse-secondary); | ||
padding: var(--spacing-2) var(--spacing-8); | ||
|
||
& nav { | ||
display: flex; | ||
justify-content: space-between; | ||
padding: var(--spacing-2) var(--spacing-6); | ||
} | ||
|
||
} | ||
} |
This file was deleted.
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
Oops, something went wrong.