Skip to content

Commit 3c39c62

Browse files
committed
Poac -> Cabin
1 parent c4a5bed commit 3c39c62

File tree

10 files changed

+16
-66
lines changed

10 files changed

+16
-66
lines changed

app/_components/header.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export function Header() {
3333
isExternal
3434
aria-label="Docs"
3535
className="p-1 text-default-600 dark:text-default-500 text-sm"
36-
href="https://docs.poac.dev"
36+
href="https://docs.cabinpkg.com"
3737
>
3838
<FontAwesomeIcon
3939
className="text-default-600 dark:text-default-500"
@@ -48,7 +48,7 @@ export function Header() {
4848
isExternal
4949
aria-label="Github"
5050
className="p-1"
51-
href="https://github.com/poac-dev"
51+
href="https://github.com/cabinpkg"
5252
>
5353
<FontAwesomeIcon
5454
className="text-default-600 dark:text-default-500"

app/_lib/hasuraClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { GraphQLClient } from "graphql-request";
22
import { getSdk } from "~/graphql";
33

4-
const HASURA_GRAPHQL_URL = "https://poac.hasura.app/v1/graphql";
4+
const HASURA_GRAPHQL_URL = "https://cabin.hasura.app/v1/graphql";
55

66
export const getHasuraClient = (token: string | null = null) => {
77
const headers =

app/packages/[group]/[name]/_components/pack.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function Pack({
4040
<div className="flex flex-col justify-center gap-1 max-w-[200px] break-words">
4141
<h4 className="text-lg font-bold">Install</h4>
4242
<p className="text-xs">
43-
Add the following line to your poac.toml file:
43+
Add the following line to your cabin.toml file:
4444
</p>
4545
<Code>{`"${pack.name}" = "${pack.version}"`}</Code>
4646
</div>

app/page.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { WindowActions } from "./_components/window-actions";
99
export const revalidate = 86400; // 1 day
1010

1111
export const metadata: Metadata = {
12-
title: "Poac - Intuitive and fast C++ package manager and build system",
12+
title: "Cabin - Intuitive and fast C++ package manager and build system",
1313
};
1414

1515
const green = "text-[#ABCF76]";
@@ -40,7 +40,7 @@ export default function Home() {
4040
as={Link}
4141
className="w-full md:w-auto"
4242
color="primary"
43-
href="https://github.com/poac-dev/poac#installation"
43+
href="https://github.com/cabinpkg/cabin#installation"
4444
radius="full"
4545
size="lg"
4646
startContent={
@@ -50,13 +50,13 @@ export default function Home() {
5050
/>
5151
}
5252
>
53-
Install Poac
53+
Install Cabin
5454
</Button>
5555
<Button
5656
isExternal
5757
as={Link}
5858
className="mx-0 my-4 md:mx-4 md:my-0 w-full md:w-auto"
59-
href="https://docs.poac.dev"
59+
href="https://docs.cabinpkg.com"
6060
radius="full"
6161
size="lg"
6262
endContent={
@@ -73,7 +73,7 @@ export default function Home() {
7373
<div className="relative">
7474
<WindowActions title="Terminal" />
7575
<Code className="text-md max-[600px]:text-xs shadow-medium p-4 bg-[#0D0B0B]">
76-
$ <span className={green}>poac</span> new
76+
$ <span className={green}>cabin</span> new
7777
hello_world
7878
<br />
7979
&nbsp;&nbsp;&nbsp;
@@ -83,7 +83,7 @@ export default function Home() {
8383
<br />$ <span className={green}>cd</span>{" "}
8484
hello_world
8585
<br />
86-
<br />$ <span className={green}>poac</span> run
86+
<br />$ <span className={green}>cabin</span> run
8787
<br />
8888
&nbsp;
8989
<span className={brightGreen}>Compiling</span>{" "}
@@ -99,7 +99,7 @@ export default function Home() {
9999
<br />
100100
&nbsp;&nbsp;&nbsp;
101101
<span className={brightGreen}>Running</span>{" "}
102-
poac-out/debug/hello_world
102+
cabin-out/debug/hello_world
103103
<br />
104104
Hello, world!
105105
</Code>

codegen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { CodegenConfig } from "@graphql-codegen/cli";
22

33
const config: CodegenConfig = {
4-
schema: "https://poac.hasura.app/v1/graphql",
4+
schema: "https://cabin.hasura.app/v1/graphql",
55
documents: ["./graphql/**/*.gql"],
66
overwrite: true,
77
generates: {

next-sitemap.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/** @type {import('next-sitemap').IConfig} */
22

33
module.exports = {
4-
siteUrl: "https://poac.dev",
4+
siteUrl: "https://cabinpkg.com",
55
generateRobotsTxt: true, // (optional)
66
// ...other options
77
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "poac.dev",
2+
"name": "website",
33
"version": "0.0.0",
44
"private": true,
55
"scripts": {

public/dark.svg

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)