Skip to content

Commit 8a61385

Browse files
committed
fix link
1 parent 8f22752 commit 8a61385

File tree

3 files changed

+11
-14
lines changed

3 files changed

+11
-14
lines changed

src/App.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import { Toaster } from "@/components/ui/toaster";
32
import { Toaster as Sonner } from "@/components/ui/sonner";
43
import { TooltipProvider } from "@/components/ui/tooltip";
@@ -36,15 +35,15 @@ const App = () => (
3635
<Route path="/" element={<Index />} />
3736
<Route
3837
path="/docs"
39-
element={<GitHubRedirect to="https://github.com/jonmumm/actor-kit#readme" />}
38+
element={<GitHubRedirect to="https://github.com/actor-kit/actor-kit#readme" />}
4039
/>
4140
<Route
4241
path="/examples"
43-
element={<GitHubRedirect to="https://github.com/jonmumm/actor-kit/tree/main/examples" />}
42+
element={<GitHubRedirect to="https://github.com/actor-kit/actor-kit/tree/main/examples" />}
4443
/>
4544
<Route
4645
path="/community"
47-
element={<GitHubRedirect to="https://github.com/jonmumm/actor-kit/discussions" />}
46+
element={<GitHubRedirect to="https://github.com/actor-kit/actor-kit/discussions" />}
4847
/>
4948
<Route path="*" element={<NotFound />} />
5049
</Routes>

src/components/Footer.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import { Link } from "react-router-dom";
32

43
const Footer = () => {
@@ -27,7 +26,7 @@ const Footer = () => {
2726
<ul className="space-y-2">
2827
<li>
2928
<a
30-
href="https://github.com/jonmumm/actor-kit#readme"
29+
href="https://github.com/actor-kit/actor-kit#readme"
3130
target="_blank"
3231
rel="noopener noreferrer"
3332
className="text-muted-foreground hover:text-foreground transition-colors"
@@ -37,7 +36,7 @@ const Footer = () => {
3736
</li>
3837
<li>
3938
<a
40-
href="https://github.com/jonmumm/actor-kit/tree/main/examples"
39+
href="https://github.com/actor-kit/actor-kit/tree/main/examples"
4140
target="_blank"
4241
rel="noopener noreferrer"
4342
className="text-muted-foreground hover:text-foreground transition-colors"
@@ -47,7 +46,7 @@ const Footer = () => {
4746
</li>
4847
<li>
4948
<a
50-
href="https://github.com/jonmumm/actor-kit"
49+
href="https://github.com/actor-kit/actor-kit"
5150
target="_blank"
5251
rel="noopener noreferrer"
5352
className="text-muted-foreground hover:text-foreground transition-colors"

src/components/Header.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import { Button } from "@/components/ui/button";
32
import { Github } from "lucide-react";
43
import { useState, useEffect } from "react";
@@ -32,23 +31,23 @@ const Header = () => {
3231
</Link>
3332
<nav className="hidden md:flex gap-6">
3433
<a
35-
href="https://github.com/jonmumm/actor-kit#readme"
34+
href="https://github.com/actor-kit/actor-kit#readme"
3635
target="_blank"
3736
rel="noopener noreferrer"
3837
className="text-sm font-medium hover:text-primary transition-colors"
3938
>
4039
Documentation
4140
</a>
4241
<a
43-
href="https://github.com/jonmumm/actor-kit/tree/main/examples"
42+
href="https://github.com/actor-kit/actor-kit/tree/main/examples"
4443
target="_blank"
4544
rel="noopener noreferrer"
4645
className="text-sm font-medium hover:text-primary transition-colors"
4746
>
4847
Examples
4948
</a>
5049
<a
51-
href="https://github.com/jonmumm/actor-kit/discussions"
50+
href="https://github.com/actor-kit/actor-kit/discussions"
5251
target="_blank"
5352
rel="noopener noreferrer"
5453
className="text-sm font-medium hover:text-primary transition-colors"
@@ -59,7 +58,7 @@ const Header = () => {
5958
</div>
6059
<div className="flex items-center gap-4">
6160
<a
62-
href="https://github.com/jonmumm/actor-kit"
61+
href="https://github.com/actor-kit/actor-kit"
6362
target="_blank"
6463
rel="noopener noreferrer"
6564
className="text-sm font-medium hover:text-primary transition-colors flex items-center gap-2.5"
@@ -70,7 +69,7 @@ const Header = () => {
7069
<Button
7170
variant="default"
7271
className="bg-gradient-to-r from-blue-600 to-cf-orange text-white hover:opacity-90"
73-
onClick={() => window.open("https://github.com/jonmumm/actor-kit#getting-started", "_blank")}
72+
onClick={() => window.open("https://github.com/actor-kit/actor-kit#getting-started", "_blank")}
7473
>
7574
Get Started
7675
</Button>

0 commit comments

Comments
 (0)