diff --git a/frontend/src/components/nav/Navbar.tsx b/frontend/src/components/nav/Navbar.tsx index 10fdc791..4e478724 100644 --- a/frontend/src/components/nav/Navbar.tsx +++ b/frontend/src/components/nav/Navbar.tsx @@ -1,6 +1,6 @@ import { useState } from "react"; import { FaBars, FaDiscord, FaGithub } from "react-icons/fa"; -import { FaXTwitter } from "react-icons/fa6"; +import { FaRegFileLines, FaWpexplorer, FaXTwitter } from "react-icons/fa6"; import { Link, useLocation } from "react-router-dom"; import Logo from "@/components/Logo"; @@ -26,8 +26,6 @@ const Navbar = () => { { name: "Buy", path: "/buy", isExternal: false }, { name: "Browse", path: "/browse", isExternal: false }, { name: "Downloads", path: "/downloads", isExternal: false }, - { name: "Docs", path: "https://docs.kscale.dev/", isExternal: true }, - { name: "Research", path: "/research", isExternal: false }, ]; const communityItems = [ @@ -35,20 +33,31 @@ const Navbar = () => { name: "Discord", path: "https://discord.gg/kscale", icon: , - description: - "Connect with other robot developers, researchers, and enthusiasts.", + description: "", }, { name: "Twitter", path: "https://x.com/kscalelabs", icon: , - description: "Follow us on Twitter for updates on what we're building.", + description: "", }, { name: "GitHub", path: "https://github.com/kscalelabs", icon: , - description: "Check out our open-source projects on GitHub.", + description: "", + }, + { + name: "Docs", + path: "https://docs.kscale.dev/", + icon: , + description: "", + }, + { + name: "Research", + path: "/research", + icon: , + description: "", }, ]; diff --git a/frontend/src/components/ui/PageHeader.tsx b/frontend/src/components/ui/PageHeader.tsx index 264a82c5..0e7aafdb 100644 --- a/frontend/src/components/ui/PageHeader.tsx +++ b/frontend/src/components/ui/PageHeader.tsx @@ -66,7 +66,7 @@ const PageHeader: React.FC = ({ title, subheading }) => { }); if (mousePosRef.current) { - const radius = 15; + const radius = 6; for (let dy = -radius; dy <= radius; dy++) { for (let dx = -radius; dx <= radius; dx++) { if (dx * dx + dy * dy <= radius * radius) {