Skip to content

Commit

Permalink
src/pages/Landing.js: Add logos for Mission Red and InvestiGator UAV,…
Browse files Browse the repository at this point in the history
… add eslint config file
  • Loading branch information
cbrxyz committed Dec 5, 2024
1 parent 7fa337f commit 2076fa3
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 2 deletions.
38 changes: 38 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import pluginReact from "eslint-plugin-react";

/** @type {import('eslint').Linter.Config[]} */
export default [
{ files: ["**/*.{js,mjs,cjs,jsx}"] },
{
languageOptions: {
globals: {
...globals.browser,
...globals.node,
BUILD_TIME: "readonly",
COMMIT_HASH: "readonly",
},
},
},
pluginJs.configs.recommended,
pluginReact.configs.flat.recommended,
{
rules: {
"react/no-unescaped-entities": 0,
"react/no-unknown-property": [
"error",
{
ignore: [
"xmlnsDc",
"xmlnsCc",
"xmlnsRdf",
"xmlnsSvg",
"rdfAbout",
"rdfResource",
],
},
],
},
},
];
21 changes: 21 additions & 0 deletions src/assets/investigator.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions src/assets/red_rover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions src/pages/Landing.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ import naviGatorImage from "../assets/navigator.jpg";
import naviGatorImage2024 from "../assets/navigator_2024.jpg";
import naviGatorLogo from "../assets/navigator_logo.png";
import subjuGatorLogo from "../assets/subjugator_logo.png";
import investigatorLogo from "../assets/investigator.svg";
import missionRedLogo from "../assets/red_rover.svg";
import subjuGatorImage from "../assets/subjugator.jpg";
import investigatorImage from "../assets/investigator.jpg";
import teamPhoto from "../assets/team_2024.jpg";
Expand Down Expand Up @@ -179,13 +181,13 @@ function Projects() {
},
{
image: softwareSolving,
title: "Mission Red Rover",
logo: missionRedLogo,
description:
"Our terrestrial rover project focuses on designing robotic rovers capable of navigating challenging terrains for exploration.",
},
{
image: investigatorImage,
title: "InvestiGator UAV",
logo: investigatorLogo,
description:
"Our aerial drone project combines stability, agility, and advanced navigation to perform aerial maneuvers autonomously.",
},
Expand Down

0 comments on commit 2076fa3

Please sign in to comment.