diff --git a/index.html b/index.html index 9011181..c9fd1f1 100644 --- a/index.html +++ b/index.html @@ -6,6 +6,7 @@ UCF Search +
diff --git a/package-lock.json b/package-lock.json index b502406..1f15e03 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,6 @@ "version": "1.0.0", "dependencies": { "@awesome.me/kit-850d323291": "^1.0.4", - "@fortawesome/react-fontawesome": "^3.1.1", "react": "^19.1.1", "react-dom": "^19.1.1", "react-router-dom": "^7.9.4", @@ -937,32 +936,6 @@ "node": ">=6" } }, - "node_modules/@fortawesome/fontawesome-svg-core": { - "version": "7.1.0", - "resolved": "https://npm.fontawesome.com/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-7.1.0.tgz", - "integrity": "sha512-fNxRUk1KhjSbnbuBxlWSnBLKLBNun52ZBTcs22H/xEEzM6Ap81ZFTQ4bZBxVQGQgVY0xugKGoRcCbaKjLQ3XZA==", - "license": "MIT", - "peer": true, - "dependencies": { - "@fortawesome/fontawesome-common-types": "7.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/react-fontawesome": { - "version": "3.1.1", - "resolved": "https://npm.fontawesome.com/@fortawesome/react-fontawesome/-/react-fontawesome-3.1.1.tgz", - "integrity": "sha512-EDllr9hpodc21odmUywHS1alXNiCd4E8sp5GJ5s7wYINz8vSmMiNWpALTiuYODb865YyQ/NlyiN4mbXp7HCNqg==", - "license": "MIT", - "engines": { - "node": ">=20" - }, - "peerDependencies": { - "@fortawesome/fontawesome-svg-core": "~6 || ~7", - "react": "^18.0.0 || ^19.0.0" - } - }, "node_modules/@humanfs/core": { "version": "0.19.1", "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", diff --git a/package.json b/package.json index 37ed2da..102b292 100644 --- a/package.json +++ b/package.json @@ -14,8 +14,7 @@ "preview": "vite preview" }, "dependencies": { - "@awesome.me/kit-850d323291": "^1.0.4", - "@fortawesome/react-fontawesome": "^3.1.1", + "react": "^19.1.1", "react-dom": "^19.1.1", "react-router-dom": "^7.9.4", diff --git a/src/components/LocationResults.tsx b/src/components/LocationResults.tsx index c5ae3d3..917af65 100644 --- a/src/components/LocationResults.tsx +++ b/src/components/LocationResults.tsx @@ -3,9 +3,6 @@ import './LocationResults.scss' import { SearchQueryContext } from '../SearchContext'; import type { LocationResultSet } from '../types/LocationTypes'; -import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; -import { byPrefixAndName } from '@awesome.me/kit-850d323291/icons'; - const MAP_SEARCH_URL = import.meta.env.VITE_MAP_SEARCH_URL; function LocationResults() { @@ -48,17 +45,17 @@ function LocationResults() { return (

- Locations + Locations

{loc.name}

- - More Information + + More Information - - Directions + + Directions
diff --git a/staticwebapp.config.json b/staticwebapp.config.json new file mode 100644 index 0000000..f619b4c --- /dev/null +++ b/staticwebapp.config.json @@ -0,0 +1,10 @@ +{ + "routes": [ + { + "route": "/assets/*.{css,js,woff,woff2,ttf,eot,svg,png,jpg,jpeg,gif,webp,ico}", + "headers": { + "Cache-Control": "public, max-age=31536000, immutable" + } + } + ] +}