diff --git a/frontend/public/favicon.ico b/frontend/public/favicon.ico index a11777cc..1841396d 100644 Binary files a/frontend/public/favicon.ico and b/frontend/public/favicon.ico differ diff --git a/frontend/public/index.html b/frontend/public/index.html index 1dbab10d..73db8553 100644 --- a/frontend/public/index.html +++ b/frontend/public/index.html @@ -25,7 +25,7 @@ work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> - React App + Site Remediation Services | British Columbia diff --git a/frontend/src/App.css b/frontend/src/App.css index 74b5e053..7d41f3a0 100644 --- a/frontend/src/App.css +++ b/frontend/src/App.css @@ -36,3 +36,10 @@ transform: rotate(360deg); } } + + + +#landing-container { + /* 58px = height of footer (48px) plus 10px for centering */ + min-height: calc(100vh - 58px); +} diff --git a/frontend/src/app/components/landing/LoginPanel.css b/frontend/src/app/components/landing/LoginPanel.css index 8efc6cc8..b7f0887c 100644 --- a/frontend/src/app/components/landing/LoginPanel.css +++ b/frontend/src/app/components/landing/LoginPanel.css @@ -3,6 +3,12 @@ height: 250px; } +#idir-login-panel { + justify-content: center; + display: flex; + align-items: center; + margin-top: 46px; /* button-height */ +} #lrs-signup-button{ background-color: #FFFFFF; diff --git a/frontend/src/app/components/landing/LoginPanel.tsx b/frontend/src/app/components/landing/LoginPanel.tsx index 35f168a2..eca0353e 100644 --- a/frontend/src/app/components/landing/LoginPanel.tsx +++ b/frontend/src/app/components/landing/LoginPanel.tsx @@ -5,15 +5,15 @@ import "./LoginPanel.css" export const LoginPanel = () =>{ - const loginDropdownTitle = "Log in to my LRS Account"; + const loginDropdownTitle = "Login to my account"; return( - - + +
{LoginDropdown(loginDropdownTitle)} - - +
+ {/* - + */}
)} \ No newline at end of file diff --git a/frontend/src/app/components/navigation/Footer.tsx b/frontend/src/app/components/navigation/Footer.tsx index 001d587e..b2d806e5 100644 --- a/frontend/src/app/components/navigation/Footer.tsx +++ b/frontend/src/app/components/navigation/Footer.tsx @@ -6,12 +6,12 @@ const Footer = () => { diff --git a/frontend/src/app/components/navigation/Header.tsx b/frontend/src/app/components/navigation/Header.tsx index f2137400..99b3bb24 100644 --- a/frontend/src/app/components/navigation/Header.tsx +++ b/frontend/src/app/components/navigation/Header.tsx @@ -20,7 +20,7 @@ const Header = () => { BC Government Logo -

Land Remediation Services

+

Site Remediation Services

{auth.isAuthenticated ? ( diff --git a/frontend/src/app/features/landing/Landing.tsx b/frontend/src/app/features/landing/Landing.tsx index 7095c5b1..85868b5a 100644 --- a/frontend/src/app/features/landing/Landing.tsx +++ b/frontend/src/app/features/landing/Landing.tsx @@ -10,7 +10,7 @@ const Landing = () =>{ return( - + {/* @@ -22,7 +22,39 @@ const Landing = () =>{ {LRSFormAccordion(forms)} + */} + + + +

Welcome to the new Site Remediation Services (SRS) web app.

+ +

You can now easily submit applications for site remediation services and track the status of your application.

+ +

Use the Site Remediation Services (SRS) web app to complete an application for:

+ +
    +
  • Contaminated Site Services Application (CSSA)
  • +
  • Site Disclosure Statement
  • +
  • Site Risk Classification Report
  • +
+ +

These, as well as all other forms can be completed using the Site Remediation Forms

+ +

Site remediation forms - Province of British Columbia

+ +

Forms for site remediation procedures for land, air and water in B.C.

+ + + + +
+

Collection Notice for Environmental Protection Platform:

+

Your personal information is collected under 26(c) of the Freedom of Information and Protection of Privacy Act for the purpose of accessing services of the Environmental Protection Division. If you have any questions about the collection of your information, please contact Site Remediation Services at site@gov.bc.ca.

+

Collection Notice for Site Remediation Forms:

+

Your personal information is collected under 26(c) of the Freedom of Information and Protection of Privacy Act for the purpose of receiving site remediation services. If you have any questions about the collection of your information, please contact Site Remediation Services at site@gov.bc.ca

+
+
) }