diff --git a/README.md b/README.md index 68614dd..95a2b76 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ # Reagent -A simple [ClojureScript](http://github.com/clojure/clojurescript) interface to -[React](http://facebook.github.io/react/). +A simple [ClojureScript](http://github.com/clojure/clojurescript) interface to [React](http://facebook.github.io/react/). + +The main repository for Reagent is now located [here](https://github.com/reagent-project/reagent). Reagent provides a way to write efficient React components using (almost) nothing but plain ClojureScript functions. diff --git a/demo/demo.cljs b/demo/demo.cljs index b7d941b..661f15e 100644 --- a/demo/demo.cljs +++ b/demo/demo.cljs @@ -14,7 +14,7 @@ "index.html" (fvar intro/main) "news/index.html" (fvar news/main)) -(def github {:href "https://github.com/holmsand/reagent"}) +(def github {:href "https://github.com/reagent-project/reagent"}) (defn github-badge [] [:a.github-badge diff --git a/demo/reagentdemo/intro.cljs b/demo/reagentdemo/intro.cljs index f0d78f6..2df021c 100644 --- a/demo/reagentdemo/intro.cljs +++ b/demo/reagentdemo/intro.cljs @@ -109,7 +109,7 @@ (defonce src-for (partial common/src-for funmap)) (defn intro [] - (let [github {:href "https://github.com/holmsand/reagent"} + (let [github {:href "https://github.com/reagent-project/reagent"} clojurescript {:href "https://github.com/clojure/clojurescript"} react {:href "http://facebook.github.io/react/"} hiccup {:href "https://github.com/weavejester/hiccup"} diff --git a/demo/reagentdemo/news/anyargs.cljs b/demo/reagentdemo/news/anyargs.cljs index 2e244fa..30182dc 100644 --- a/demo/reagentdemo/news/anyargs.cljs +++ b/demo/reagentdemo/news/anyargs.cljs @@ -32,7 +32,7 @@ (defn main [{:keys [summary]}] (let [head "All arguments allowed" - geometry {:href "https://github.com/holmsand/reagent/tree/master/examples/geometry"} + geometry {:href "https://github.com/reagent-project/reagent/tree/master/examples/geometry"} jonase {:href "https://github.com/jonase"}] [:div.reagent-demo [:h1 [link {:href (fvar main)} head]] diff --git a/demo/reagentdemo/news/clockpost.cljs b/demo/reagentdemo/news/clockpost.cljs index 196f737..6806b5e 100644 --- a/demo/reagentdemo/news/clockpost.cljs +++ b/demo/reagentdemo/news/clockpost.cljs @@ -21,7 +21,7 @@ hopclock {:href "http://pmbauer.github.io/2014/01/27/hoplon-binary-clock/"} om {:href "https://github.com/swannodette/om"} hoplon {:href "http://hoplon.io"} - clocksrc {:href "https://github.com/holmsand/reagent/blob/master/demo/reagentdemo/news/binaryclock.cljs"}] + clocksrc {:href "https://github.com/reagent-project/reagent/blob/master/demo/reagentdemo/news/binaryclock.cljs"}] [:div.reagent-demo [:h1 [link {:href (fvar main)} head]] diff --git a/project.clj b/project.clj index 4563b78..4c0da08 100644 --- a/project.clj +++ b/project.clj @@ -1,6 +1,6 @@ (defproject reagent "0.4.4-SNAPSHOT" - :url "http://github.com/holmsand/reagent" + :url "http://github.com/reagent-project/reagent" :license {:name "MIT"} :description "A simple ClojureScript interface to React" :dependencies [[org.clojure/clojure "1.6.0"]