diff --git a/src/components/HeroSection/index.jsx b/src/components/HeroSection/index.jsx index 9a9721b..f63cb5b 100755 --- a/src/components/HeroSection/index.jsx +++ b/src/components/HeroSection/index.jsx @@ -18,10 +18,9 @@ import { Img, UDLLink, } from "@/components/HeroSection/HeroElements"; -import img from "@/images/F23.prince.learning.turquoise.jpg"; +import img from "@/images/book_cover.jpg"; -export default function HeroSection() { - const citation = ` +const citation = ` @book{prince2023understanding, author = "Simon J.D. Prince", title = "Understanding Deep Learning", @@ -31,6 +30,116 @@ export default function HeroSection() { } `; +const news = [ + { + date: "05/22/24", + content: ( + + New{" "} + + blog + {" "} + about the applications of the neural tangent kernel. + + ), + }, + { + date: "05/10/24", + content: ( + + Positive{" "} + + review + {" "} + in Nature Machine Intelligence. + + ), + }, + { + date: "03/12/24", + content: Book now available again., + }, + { + date: "02/21/24", + content: ( + + New blog about the{" "} + + Neural Tangent Kernel + + . + + ), + }, + { + date: "02/15/24", + content: ( + + First printing of book has sold out in most places. Second printing available + mid-March. + + ), + }, + { + date: "01/29/24", + content: ( + + New blog about{" "} + + gradient flow + {" "} + published. + + ), + }, + { + date: "12/26/23", + content: ( + + Machine Learning Street Talk{" "} + podcast discussing + book. + + ), + }, + { + date: "12/19/23", + content: ( + + Deeper Insights{" "} + + podcast + {" "} + discussing book. + + ), + }, + { + date: "12/06/23", + content: ( + + + Interview + {" "} + with Borealis AI. + + ), + }, + { + date: "12/05/23", + content: ( + + Book released by{" "} + + The MIT Press + + . + + ), + }, +]; + +export default function HeroSection() { return ( @@ -38,132 +147,17 @@ export default function HeroSection() { RECENT NEWS: - - 05/22/24 - - {" "} - New{" "} - - {" "} - blog{" "} - {" "} - about the applications of the neural tangent kernel. - - - - - 05/10/24 - - {" "} - Positive{" "} - - review - {" "} - in Nature Machine Intelligence. - - - - {/* - 03/12/24 - - {" "} - Book now available again. - - - - 02/21/24 - - New blog about the{" "} - - Neural Tangent Kernel. - - - Book now available again. - */} - - - 02/21/24 - - New blog about the{" "} - - Neural Tangent Kernel - - . - - - {/* - 02/15/24 - - {" "} - First printing of book has sold out in most places. Second - printing available mid-March. - - - First printing of book has sold out in most places. Second printing available mid-March. - */} - - - 01/29/24 - - {" "} - New blog about{" "} - - {" "} - gradient flow - {" "} - published. - - - - 12/26/23 - - {" "} - Machine Learning Street Talk{" "} - - {" "} - podcast{" "} - {" "} - discussing book. - - - - 12/19/23 - - Deeper Insights{" "} - - podcast - {" "} - discussing book. - - - - 12/06/23 - - {" "} - - Interview - {" "} - with Borealis AI. - - - - 12/05/23 - - {" "} - Book released by{" "} - - The MIT Press - - . - - + {news.map((item, index) => ( + + {item.date} + {item.content} + + ))} CITATION:
-                                
-                                    <>{citation}
-                                
+                                {citation}
                             
@@ -177,7 +171,7 @@ export default function HeroSection() {
- UDL Book + Book Cover Download full pdf (27 May 2024) diff --git a/src/images/F23.prince.learning.turquoise.jpg b/src/images/book_cover.jpg similarity index 100% rename from src/images/F23.prince.learning.turquoise.jpg rename to src/images/book_cover.jpg