diff --git a/apps/website/src/content.ts b/apps/website/src/content.ts index a77b07e..ca85ca3 100644 --- a/apps/website/src/content.ts +++ b/apps/website/src/content.ts @@ -195,8 +195,8 @@ export const FOOTER = { promptUser: "roberto@thesolidchain:~$", promptRest: "a product of The Solid Chain", family: [ - { label: "reCode ", href: "#" }, - { label: "reDeploy ^^", current: true }, - { label: "reDeFi <=>", href: "#" }, + { label: "reCode ", href: "https://recode.thesolidchain.com" }, + { label: "reDeploy ^^", current: true, href: "https://redeploy.thesolidchain.com" }, + { label: "reDeFi <=>", href: "https://redefi.thesolidchain.com" }, ] as FamilyLink[], }; diff --git a/apps/website/test/App.test.tsx b/apps/website/test/App.test.tsx index f3ada95..e9baaea 100644 --- a/apps/website/test/App.test.tsx +++ b/apps/website/test/App.test.tsx @@ -70,8 +70,14 @@ describe("App", () => { expect(screen.getByText("roberto@thesolidchain:~$")).toBeInTheDocument(); expect(screen.getByText("reDeploy ^^")).toBeInTheDocument(); - expect(screen.getByRole("link", { name: "reCode " })).toHaveAttribute("href", "#"); - expect(screen.getByRole("link", { name: "reDeFi <=>" })).toHaveAttribute("href", "#"); + expect(screen.getByRole("link", { name: "reCode " })).toHaveAttribute( + "href", + "https://recode.thesolidchain.com", + ); + expect(screen.getByRole("link", { name: "reDeFi <=>" })).toHaveAttribute( + "href", + "https://redefi.thesolidchain.com", + ); }); it("links to the real GitHub repo from the topbar", () => {