diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx
index 27d484513..916e91dab 100644
--- a/frontend/src/App.jsx
+++ b/frontend/src/App.jsx
@@ -24,9 +24,7 @@ import { AddEditUser } from './views/Users'
import { ApiDocs } from './components/ApiDocs'
import { Login } from './components/Login'
import { NotFound } from './components/NotFound'
-import ContactUs from './components/ContactUs'
import PublicLayout from './layouts/PublicLayout'
-import { EditViewComplianceReport } from './views/ComplianceReports/EditViewComplianceReport'
import { AddEditNotionalTransfers } from '@/views/NotionalTransfers'
import { AddEditOtherUses } from './views/OtherUses/AddEditOtherUses'
import { AddEditFinalSupplyEquipments } from './views/FinalSupplyEquipments/AddEditFinalSupplyEquipments'
@@ -35,7 +33,6 @@ import { AddEditFuelExports } from './views/FuelExports/AddEditFuelExports'
import { AddEditAllocationAgreements } from './views/AllocationAgreements/AddEditAllocationAgreements'
import { logout } from '@/utils/keycloak.js'
import { CompareReports } from '@/views/CompareReports/CompareReports'
-import { ViewLegacyComplianceReport } from '@/views/ComplianceReports/ViewLegacyComplianceReport.jsx'
import { ComplianceReportViewSelector } from '@/views/ComplianceReports/ComplianceReportViewSelector.jsx'
const router = createBrowserRouter([
@@ -148,7 +145,7 @@ const router = createBrowserRouter([
{
path: ROUTES.ORGANIZATIONS,
element: ,
- handle: { title: 'Organizations', crumb: () => `Organizations` }
+ handle: { title: 'Organizations', crumb: () => 'Organizations' }
},
{
path: ROUTES.ORGANIZATIONS_ADD,
@@ -385,11 +382,6 @@ const router = createBrowserRouter([
element: ,
handle: { crumb: () => 'API Docs' }
},
- {
- path: ROUTES.CONTACT_US,
- element: ,
- handle: { crumb: () => 'Contact Us' }
- },
{
path: ROUTES.LOG_OUT,
loader: async () => {
diff --git a/frontend/src/components/BCFooter/BCFooter.stories.jsx b/frontend/src/components/BCFooter/BCFooter.stories.jsx
index d780f8db7..bee863f73 100644
--- a/frontend/src/components/BCFooter/BCFooter.stories.jsx
+++ b/frontend/src/components/BCFooter/BCFooter.stories.jsx
@@ -45,12 +45,6 @@ Default.args = {
name: 'Copyright',
id: 'footer-copyright',
label: 'BC gov copyright information'
- },
- {
- href: '/contact-us',
- name: 'Contact Us',
- id: 'footer-contact-us',
- label: 'Contact Us information for LCFS application'
}
],
repoDetails: {
diff --git a/frontend/src/components/BCFooter/index.jsx b/frontend/src/components/BCFooter/index.jsx
index 9d61817a7..12ea1a96f 100644
--- a/frontend/src/components/BCFooter/index.jsx
+++ b/frontend/src/components/BCFooter/index.jsx
@@ -1,15 +1,8 @@
import PropTypes from 'prop-types'
-
-// @mui material components
import { Link } from '@mui/material'
-
-// BCGov React components
import BCBox from '@/components/BCBox'
import BCTypography from '@/components/BCTypography'
-// Icons
import GitHubIcon from '@mui/icons-material/GitHub'
-
-// BCGov React base styles
import typography from '@/themes/base/typography'
function Footer({
diff --git a/frontend/src/components/ContactUs.jsx b/frontend/src/components/ContactUs.jsx
deleted file mode 100644
index 153e9888f..000000000
--- a/frontend/src/components/ContactUs.jsx
+++ /dev/null
@@ -1,100 +0,0 @@
-/**
- * ContactUs Component
- *
- * This component renders the contact information for various departments
- * with enhanced accessibility features.
- */
-const ContactUs = () => {
- return (
-
-
Contact Us
-
-
- Low Carbon Fuel Standard
-
- For feedback and questions related to the Low Carbon Fuel Standard,
- please contact the Low Carbon Fuels Branch.
-
-
-
-
-
- BCeID
-
- For questions related to BCeID, such as registering for a BCeID,
- resetting your password, or a locked account, please contact the BCeID
- Help Desk.
-
-
-
- Visit the BCeID{' '}
-
- Help Desk
-
-
- Phone: 1-888-356-2741
-
-
-
-
- IDIR
-
- For questions related to IDIR, such as resetting your password or a
- locked account, please contact the OCIO Service Desk.
-
-
-
-
- )
-}
-
-export default ContactUs
diff --git a/frontend/src/components/Footer.jsx b/frontend/src/components/Footer.jsx
index 76b9cbf08..0af3801f8 100644
--- a/frontend/src/components/Footer.jsx
+++ b/frontend/src/components/Footer.jsx
@@ -7,13 +7,13 @@ const Footer = (props) => {
const links = useMemo(
() => [
{
- href: '/',
+ href: 'https://gov.bc.ca/',
name: 'Home',
id: 'footer-home',
label: 'Home page of LCFS'
},
{
- href: 'https://www2.gov.bc.ca/gov/content/industry/electricity-alternative-energy/transportation-energies/renewable-low-carbon-fuels/transportation-fuels-reporting-system',
+ href: 'https://www.gov.bc.ca/aboutgov',
name: 'About this site',
id: 'footer-about-this-site',
label: 'About this site'
@@ -43,7 +43,7 @@ const Footer = (props) => {
label: 'BC gov copyright information'
},
{
- href: '/contact-us',
+ href: 'https://gov.bc.ca/contactus',
name: 'Contact Us',
id: 'footer-contact-us',
label: 'Contact Us information for LCFS application'
diff --git a/frontend/src/components/Login.jsx b/frontend/src/components/Login.jsx
index c3333649e..088561f4b 100644
--- a/frontend/src/components/Login.jsx
+++ b/frontend/src/components/Login.jsx
@@ -23,7 +23,7 @@ import Grid from '@mui/material/Grid'
import { useKeycloak } from '@react-keycloak/web'
import { useMemo } from 'react'
import { useTranslation } from 'react-i18next'
-import { Link, useLocation } from 'react-router-dom'
+import { useLocation } from 'react-router-dom'
import Snowfall from 'react-snowfall'
const currentDate = new Date()
@@ -245,22 +245,6 @@ export const Login = () => {
-
-
- {' '}
-
-
- {t('login.troubleMessage')}
-
-
-
-
diff --git a/frontend/src/constants/routes/routes.js b/frontend/src/constants/routes/routes.js
index 040be0f9b..e46791133 100644
--- a/frontend/src/constants/routes/routes.js
+++ b/frontend/src/constants/routes/routes.js
@@ -62,10 +62,7 @@ export const FUELCODES = '/fuel-codes'
export const FUELCODES_ADD = `${FUELCODES}/add-fuel-code`
export const FUELCODES_EDIT = `${FUELCODES}/:fuelCodeID`
-export const FSE = '/fse' // might not need
-
export const FILESUBMISSION = '/file-submissions' // might not need
export const APIDOCS = '/docs'
-export const CONTACT_US = '/contact-us'
export const LOG_OUT = '/log-out'