Skip to content

Commit

Permalink
Merge pull request #8 from compsci-adl/homepage
Browse files Browse the repository at this point in the history
Implement basic homepage
  • Loading branch information
rayokamoto authored Dec 27, 2023
2 parents 5ea2eb4 + eb5f730 commit 7094dd2
Show file tree
Hide file tree
Showing 36 changed files with 828 additions and 173 deletions.
4 changes: 3 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
# The above only works properly for Git 2.10+, so for older versions
# we need to manually list the binary files we don't want modified.
*.ico binary
*.jpg binary
*.jpeg binary
*.jpg binary
*.png binary
*.ttf binary
*.woff binary
*.woff2 binary
21 changes: 3 additions & 18 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
{
"plugins": [
"prettier-plugin-jsdoc",
"@trivago/prettier-plugin-sort-imports"
],
"plugins": ["prettier-plugin-jsdoc", "@trivago/prettier-plugin-sort-imports"],
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
Expand All @@ -22,22 +19,10 @@
"htmlWhitespaceSensitivity": "css",
"embeddedLanguageFormatting": "auto",
"importOrderSeparation": false,
"importOrder": [
"<THIRD_PARTY_MODULES>",
"^[./]",
"<THIRD_PARTY_TYPES>",
"<TYPE>^[./]"
],
"importOrder": ["<THIRD_PARTY_MODULES>", "^[./]", "<THIRD_PARTY_TYPES>", "<TYPE>^[./]"],
"overrides": [
{
"files": [
"*.yaml",
"*.yml",
"*.json",
"*.config.{js,ts}",
"*rc",
"*rc.{js,ts}"
],
"files": ["*.yaml", "*.yml", "*.json", "*.config.{js,ts}", "*rc", "*rc.{js,ts}"],
"options": {
"tabWidth": 2
}
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"dependencies": {
"next": "14.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react-dom": "^18.2.0",
"react-icons": "^4.12.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
Expand Down
14 changes: 14 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added public/favicon.ico
Binary file not shown.
Binary file added public/images/cyberPanel.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/duckCTF.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/pizza.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/images/rectangleGrid.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/images/squareGrid.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/images/whiteDuck.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/images/whiteDuckOutline.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/images/yellowStar.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/images/yellowTriangle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 7094dd2

Please sign in to comment.