Skip to content

Commit

Permalink
rename project name
Browse files Browse the repository at this point in the history
  • Loading branch information
manjillama committed Oct 30, 2024
1 parent 052719b commit 8d62f61
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center">
<br/>
<h2 align="center">centsibl.</h2>
<h2 align="center">centsibly.</h2>
<p align="center">Track and gain insights of your income and spendings. The budget app that you always wanted.</p>
</p>

Expand All @@ -18,7 +18,7 @@
### 1. Clone the repository and install dependencies

```
git clone https://github.com/manjillama/centsibl.git
git clone https://github.com/manjillama/centsibly.git
npm install
```

Expand Down
3 changes: 2 additions & 1 deletion components/navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import SignoutButton from "./signout-button";
import * as DropdownMenu from "@radix-ui/react-dropdown-menu";
import { NavLink } from "../ui";
import Avatar from "../ui/avatar";
import { SITE_DATA } from "@/constants";

export default function Navbar() {
const pathname = usePathname();
Expand All @@ -16,7 +17,7 @@ export default function Navbar() {
<nav className="container py-3 mx-auto px-[15px] text-sm">
<div className="flex justify-between items-center">
<h1 className="font-bold text-xl">
<Link href="/">centsible.</Link>
<Link href="/">{SITE_DATA.title}.</Link>
</h1>
<ul className="flex space-x-2 items-center">
{session ? (
Expand Down
4 changes: 2 additions & 2 deletions constants/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const SITE_DATA = {
name: "Centsibl",
title: "centsibl",
name: "Centsibly",
title: "centsibly",
description: "Track and gain insights of your income and spendings.",
};
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "centsibl",
"name": "centsibly",
"description": "The budget app that you always wanted.",
"version": "0.1.0",
"author": "Manjil Tamang <[email protected]> (https://manjiltamang.com/)",
Expand Down

0 comments on commit 8d62f61

Please sign in to comment.