Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 2 additions & 20 deletions backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import { Group, Text, Link } from "@chakra-ui/react";
import { FooterText } from "../translations/general";
import { FooterText } from "./translations/general";

const Footer: React.FC = () => {
return (
Expand Down
157 changes: 0 additions & 157 deletions frontend/src/Login.tsx

This file was deleted.

47 changes: 0 additions & 47 deletions frontend/src/RegisterLanding.tsx

This file was deleted.

17 changes: 17 additions & 0 deletions frontend/src/components/BrandingPanel.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import logo from "../images/logo.svg";

/**
* Right-hand branding panel with orange background and BostonCAN logo.
* Uses Tailwind and primary-800 for panel background.
*/
export default function BrandingPanel() {
return (
<div className="w-full h-full bg-primary-900 rounded-[1.2rem] flex items-center justify-center">
<img
className="w-1/2 h-1/2 object-contain"
src={logo}
alt="BCAN Logo"
/>
</div>
);
}
6 changes: 4 additions & 2 deletions frontend/src/components/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ export default function Button({ text, onClick, className, logo, logoPosition, d
<button onClick={onClick} disabled={disabled || false} type={type || "button"}
className={`
px-4 py-2 rounded-3xl font-medium text-black border-2 active:bg-primary-900 active:text-white
flex items-center justify-center
${className}
flex items-center justify-center transition-opacity
${className} ${disabled
? "cursor-not-allowed bg-primary-700 opacity-70"
: "bg-primary-900 hover:opacity-95"}
`}
>
{logo && logoPosition === 'left' &&
Expand Down
Loading