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

replaced the sip & play logo with new playcafe logo #85

Merged
merged 3 commits into from
Oct 5, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
Binary file added frontend/src/assets/Logo/playcafe.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions frontend/src/components/Shared/Navbar.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useState, useEffect } from "react";
import Logo from "../../assets/Logo/logo.png";
import Logo from "../../assets/Logo/playcafe.png";
import { Link, useLocation } from "react-router-dom";
import { useKindeAuth } from "@kinde-oss/kinde-auth-react";

Expand Down Expand Up @@ -56,7 +56,7 @@ const Navbar = () => {
<div className="flex justify-between items-center h-16">
<Link to="/">
<div className="flex-shrink-0">
<img className="w-14 h-14 bg-white rounded-full p-1" alt="logo" src={Logo} />
<img className="w-16 h-16 bg-white rounded-full p-0" alt="logo" src={Logo} />
</div>
</Link>

Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/Shared/footer/Content.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useEffect, useState } from "react";
import Logo from "../../../assets/Logo/logo.png";
import Logo from "../../../assets/Logo/playcafe.png";
RamakrushnaBiswal marked this conversation as resolved.
Show resolved Hide resolved
import { FaFacebook, FaInstagram, FaTiktok } from "react-icons/fa";

export default function Content() {
Expand Down Expand Up @@ -28,7 +28,7 @@ const Section2 = () => {
{!isWide && (
<div className="flex justify-center">
<img
className="w-20 bg-white p-2 rounded-3xl h-20"
className="w-24 bg-transparent p-0 rounded-3xl h-24"
alt="logo"
src={Logo}
/>
Expand Down