Skip to content

Commit

Permalink
adjust copy and clean up console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
razorhollow committed Oct 8, 2024
1 parent 90c2ae6 commit 85418ec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions app/components/Avatar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ export default function Avatar({ name }: { name: string }) {
const backgroundColor = getBrandColorFromName(name).split(" ").join("");
const firstLetter = name.charAt(0).toUpperCase();

console.log("Avatar: ", name, firstLetter, backgroundColor);

return (
<div
className="text-3xl flex items-center justify-center w-12 h-12 rounded-full text-white"
Expand Down
2 changes: 1 addition & 1 deletion app/components/ServicesNavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default function ServicesNavbar() {
</div>
<p className="text-lg text-white max-w-2xl mb-8">
{currentIndex === -1
? "Explore our 3-step process for exceptional tree care and discover how we can help you transform your outdoor space."
? "Explore our 3-step process and discover how simple it is to transform your outdoor space."
: "Learn more about our professional tree care services designed to meet all your needs."}
</p>
<p className="text-lg text-accent-700 max-w-2xl mb-4">
Expand Down

0 comments on commit 85418ec

Please sign in to comment.