Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor Webpage Logo: Implement Transparent Version for Seamless Design Consistency #183

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ backend/credentials.json
backend/token.json
backend/service_account_key.json
venv
backend/Eduaid
backend/Eduaid
.DS_Store
Binary file added eduaid_web/public/aossie_transparent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion eduaid_web/src/pages/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const Home = () => {
<div className="popup w-screen h-screen bg-[#02000F] flex justify-center items-center">
<div className="w-full h-full bg-cust bg-opacity-50 bg-custom-gradient">
<div>
<img src={logo} alt="logo" className="w-24 my-6 mx-6 block" />
<img src="aossie_transparent.png" alt="logo" className="w-24 my-6 mx-6 block" />
<div className="text-7xl text-center font-extrabold">
<span className="bg-gradient-to-r from-[#FF005C] to-[#7600F2] text-transparent bg-clip-text">
Edu
Expand Down
2 changes: 1 addition & 1 deletion eduaid_web/src/pages/Previous.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const Previous = () => {
<div className="w-full h-full bg-cust bg-opacity-50 bg-custom-gradient">
<a href="/">
<div className="flex items-end gap-[2px]">
<img src={logo} alt="logo" className="w-16 my-4 ml-4 block" />
<img src="Aossie_transparent.png" alt="logo" className="w-16 my-4 ml-4 block" />
<div className="text-2xl mb-3 font-extrabold">
<span className="bg-gradient-to-r from-[#FF005C] to-[#7600F2] text-transparent bg-clip-text">
Edu
Expand Down
2 changes: 1 addition & 1 deletion eduaid_web/src/pages/Question_Type.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const Question_Type = () => {
<div className="w-full h-full bg-cust bg-opacity-50 bg-custom-gradient p-6">
<a href="/">
<div className="flex items-end gap-4">
<img src={logo} alt="logo" className="w-24 my-6 block" />
<img src="aossie_transparent.png" alt="logo" className="w-24 my-6 block" />
<div className="text-5xl mb-5 font-extrabold">
<span className="bg-gradient-to-r from-[#FF005C] to-[#7600F2] text-transparent bg-clip-text">
Edu
Expand Down