Skip to content

Commit

Permalink
Merge pull request #85 from Nvntdad/main
Browse files Browse the repository at this point in the history
replaced the sip & play logo with new playcafe logo
  • Loading branch information
RamakrushnaBiswal authored Oct 5, 2024
2 parents 285bebd + fcf44df commit 0879bed
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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-14 h-14 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";
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

0 comments on commit 0879bed

Please sign in to comment.