Skip to content

Commit fb313d3

Browse files
committed
rebrand to resonant
1 parent 2ac0301 commit fb313d3

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Superstack
1+
# Resonant
22

3-
This is the monorepo for the Superstack app built on [Turborepo](https://turbo.build/repo).
3+
This is the monorepo for the Resonant app built on [Turborepo](https://turbo.build/repo).
44

55
Make sure you have `turbo` [installed globally](https://turbo.build/repo/docs/installing#install-globally)
66

apps/backend/api/main.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
"http://localhost:3000",
3030
"http://localhost:8080",
3131
"https://app-superstack.vercel.app"
32+
"https://resonant.vercel.app"
3233
]
3334

3435
app.add_middleware(

apps/backend/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.poetry]
2-
name = "superstack"
2+
name = "resonant"
33
version = "0.1.0"
44
description = ""
55
authors = ["Henry Nguyen <[email protected]>"]

apps/web/src/app/(main)/layout.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { Topics } from "@/components/Topics";
55
import { Toaster } from "@/components/ui/toaster";
66
import { createServerComponentClient } from "@supabase/auth-helpers-nextjs";
77
import { cookies } from "next/headers";
8-
import Link from "next/link";
98
import { redirect } from "next/navigation";
109
import { Providers } from "../providers";
1110

@@ -30,10 +29,10 @@ export default async function RootLayout({
3029

3130
return (
3231
<Providers>
33-
<div className="mx-auto p-8 lg:max-w-2xl">
34-
<Link href="/" className="text-2xl font-bold">
35-
Superstack
36-
</Link>
32+
<div className="mx-auto px-8 py-4 lg:max-w-2xl">
33+
{/* <Link href="/" className="text-2xl font-bold">
34+
Resonant
35+
</Link> */}
3736
<Topics />
3837
<Search />
3938
{children}

apps/web/src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Providers } from "./providers";
88
export const dynamic = "force-dynamic";
99

1010
export const metadata: Metadata = {
11-
title: "Superstack",
11+
title: "Resonant",
1212
description: "A digital feed for the intellectually curious",
1313
};
1414
const inter = Inter({ subsets: ["latin"] });

apps/web/src/components/NavBar/NavBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export async function NavBar({
2323
<div className="border-b">
2424
<div className="flex h-16 items-center justify-between px-4">
2525
<Link href="/" className="text-xl font-bold">
26-
Superstack
26+
Resonant
2727
</Link>
2828
<UserNav user={user} />
2929
</div>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
"turbo": "latest"
1616
},
1717
"packageManager": "[email protected]",
18-
"name": "superstack-monorepo"
18+
"name": "resonant-monorepo"
1919
}

0 commit comments

Comments
 (0)