Skip to content

Commit

Permalink
chore: update app naming
Browse files Browse the repository at this point in the history
  • Loading branch information
pantheredeye committed Dec 5, 2024
1 parent 5e29de2 commit 2ae830f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion web/src/components/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const Sidebar = () => {
{/* Header with Title and Collapse Button */}
<div className="flex h-16 items-center justify-between px-4">
{!isCollapsed && (
<span className="text-2xl font-bold text-gray-200">SWPPP-Tip</span>
<span className="text-2xl font-bold text-gray-200">SWPPP-TOP</span>
)}
<button
onClick={() => setIsCollapsed(!isCollapsed)}
Expand Down
8 changes: 6 additions & 2 deletions web/src/layouts/MainLayout/MainLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ const MainLayout = ({ children }) => {
return (
<div className="flex min-h-screen flex-col bg-gray-900 text-gray-900">
<header className="flex items-center justify-between bg-gray-900 px-6 py-4 text-white shadow">
<h1 className="text-2xl font-bold">BetterSWPPP</h1>
<h1 className="text-2xl font-bold">
<i>
Stormwater Management - <u>T</u>he <u>O</u>ne <u>P</u>rogram
</i>
</h1>
<nav>
<Link to={routes.home()} className="px-4">
Home
Expand Down Expand Up @@ -43,7 +47,7 @@ const MainLayout = ({ children }) => {
<main className="flex-1 px-4 py-6 sm:px-6 lg:px-8">{children}</main>
<footer className="mt-auto bg-gray-400 py-4 text-center">
<p className="text-sm text-gray-700">
&copy; 2024 BetterSWPPP. All rights reserved.
&copy; 2024 SWPPP-TOP. All rights reserved.
</p>
</footer>
</div>
Expand Down
3 changes: 1 addition & 2 deletions web/src/pages/ForgotPasswordPage/ForgotPasswordPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const ForgotPasswordPage = () => {
<img
className="mx-auto h-10 w-auto"
src="https://tailwindui.com/img/logos/mark.svg?color=indigo&shade=600"
alt="BetterSWPPP"
alt="SWPPP-TOP"
/>
<h2 className="mt-6 text-center text-2xl font-bold leading-9 tracking-tight text-gray-900">
Forgot your password?
Expand All @@ -68,7 +68,6 @@ const ForgotPasswordPage = () => {
<TextField
name="email"
ref={emailRef}
type="email"
autoComplete="email"
required
className="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6"
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/SignupPage/SignupPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const SignupPage = () => {
<img
className="mx-auto h-10 w-auto"
src="https://tailwindui.com/img/logos/mark.svg?color=indigo&shade=600"
alt="BetterSWPPP"
alt="SWPPP-TOP"
/>
<h2 className="mt-6 text-center text-2xl font-bold leading-9 tracking-tight text-gray-900">
Create your account
Expand Down

0 comments on commit 2ae830f

Please sign in to comment.