Skip to content

Commit

Permalink
vercel
Browse files Browse the repository at this point in the history
  • Loading branch information
sqwatato committed Aug 29, 2023
1 parent 967bfae commit f91b64e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/home/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import Link from "next/link";
import Image from "next/image";
import logo from "../public/logo.png";
// import logo from "../public/images/logo.png";

export default function Navbar() {
return (
Expand Down
2 changes: 1 addition & 1 deletion components/home/PetCard.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useState } from "react";
import { PetCardProps } from "@/components/Props";
import { PetCardProps } from "@/components/home/Props";

const PetCard = ({ type, name, breed, age, gender, description, shelter, image }: PetCardProps) => {
const [isHeartActive, setHeartActive] = useState(false);
Expand Down

0 comments on commit f91b64e

Please sign in to comment.