Skip to content

Commit 8d62f61

Browse files
committed
rename project name
1 parent 052719b commit 8d62f61

5 files changed

Lines changed: 9 additions & 8 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
22
<br/>
3-
<h2 align="center">centsibl.</h2>
3+
<h2 align="center">centsibly.</h2>
44
<p align="center">Track and gain insights of your income and spendings. The budget app that you always wanted.</p>
55
</p>
66

@@ -18,7 +18,7 @@
1818
### 1. Clone the repository and install dependencies
1919

2020
```
21-
git clone https://github.com/manjillama/centsibl.git
21+
git clone https://github.com/manjillama/centsibly.git
2222
npm install
2323
```
2424

components/navbar/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import SignoutButton from "./signout-button";
66
import * as DropdownMenu from "@radix-ui/react-dropdown-menu";
77
import { NavLink } from "../ui";
88
import Avatar from "../ui/avatar";
9+
import { SITE_DATA } from "@/constants";
910

1011
export default function Navbar() {
1112
const pathname = usePathname();
@@ -16,7 +17,7 @@ export default function Navbar() {
1617
<nav className="container py-3 mx-auto px-[15px] text-sm">
1718
<div className="flex justify-between items-center">
1819
<h1 className="font-bold text-xl">
19-
<Link href="/">centsible.</Link>
20+
<Link href="/">{SITE_DATA.title}.</Link>
2021
</h1>
2122
<ul className="flex space-x-2 items-center">
2223
{session ? (

constants/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const SITE_DATA = {
2-
name: "Centsibl",
3-
title: "centsibl",
2+
name: "Centsibly",
3+
title: "centsibly",
44
description: "Track and gain insights of your income and spendings.",
55
};

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "centsibl",
2+
"name": "centsibly",
33
"description": "The budget app that you always wanted.",
44
"version": "0.1.0",
55
"author": "Manjil Tamang <hello@manjiltamang.com> (https://manjiltamang.com/)",

0 commit comments

Comments
 (0)