Skip to content

Commit

Permalink
feat: Adds bale icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Hossein-Asadi committed Jan 14, 2025
1 parent 2b8c418 commit b8b8ccc
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 10 deletions.
Binary file added frontend/src/assets/bale.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 9 additions & 4 deletions frontend/src/components/footer/PageFooter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ import React from 'react';
import aut from '../../assets/AUT.png';
import ceit from '../../assets/CEIT.png';
import ssc from '../../assets/SSC.png';
import bale from '../../assets/bale.png';
import '../../css/Footer.css'
import SvgIcon from "@mui/material/SvgIcon";
import Link from "@mui/material/Link";
import { Margin } from '@mui/icons-material';

export default function PageFooter() {
return (
Expand Down Expand Up @@ -47,14 +49,17 @@ export default function PageFooter() {
</Link>
</span>
</div>
<div>
<div className='logo-container'>
<a href='https://bale.ai/'>
<img className="logo" src={bale} alt="Bale"/>
</a>
<img className="logo" src={aut} alt="Amirkabir University of Technology"/>
<img className="logo" src={ceit} alt="AUT Computer Engineering"/>
{/* <img className="logo" src={ceit} alt="AUT Computer Engineering"/> */}
<img className="logo" src={ssc} alt="AUT Student Scientific Chapter"/>
</div>
<h3 id="footer-title">
{/* <h3 id="footer-title">
Student Scientific Chapter Computer Engineering Department Amirkabir University of Technology
</h3>
</h3> */}
</div>
);
}
24 changes: 20 additions & 4 deletions frontend/src/components/item-card/item-card.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,28 @@ export const Presenter = ({ presenterName }) => (
);

export const Cost = ({ cost }) => (
<Stack flexDirection="row" alignItems="center" gap={1}>
<CreditCard />
<Typography variant="overline" sx={{ fontSize: 14 }} color="text.secondary">
{cost} T
<Stack flexDirection="row" alignItems="center" gap={1}>
<CreditCard />
<Stack>
<Typography
variant="overline"
sx={{ fontSize: 14, color: "text.secondary" }}
lineHeight={1.5}
>
<span style={{ textDecoration: "line-through" }}>{cost} T</span> 0 T
</Typography>
<Typography
sx={{
fontSize: 14,
color: "text.secondary",
fontWeight: "700"
}}
lineHeight={1.5}
>
Paid by Bale Messeger
</Typography>
</Stack>
</Stack>
);

const FullCapacityChip = () => (
Expand Down
15 changes: 13 additions & 2 deletions frontend/src/css/Footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,23 @@

.logo {
width: 5.5rem;
/* height: 5.5rem; */
}

#footer-title {
.logo-container {
display: flex;
gap: 5px;
width: 240px;
justify-content: center;
align-items: center;
padding-inline: 10px;
box-sizing: content-box;
}

/* #footer-title {
max-width: 300px;
text-align: left;
}
} */

#social-media {
display: flex;
Expand Down

0 comments on commit b8b8ccc

Please sign in to comment.