diff --git a/app/(loggedIn)/page.tsx b/app/(loggedIn)/page.tsx index 3028ee222..851c1d5a0 100644 --- a/app/(loggedIn)/page.tsx +++ b/app/(loggedIn)/page.tsx @@ -18,35 +18,41 @@ async function HomePage({}) { return null; }); const comingSoon = [ - "PHPStorm", "IntelliJ", - "WebStorm", + "Android Studio", + "AppCode", + "Aqua", + "CLion", + "DataGrip", + "DataSpell", + "GoLand", + "MPS", + "PhpStorm", "PyCharm", + "Rider", "RubyMine", + "RustRover", + "WebStorm", ]; return (
{data && } {userEmail && ( -
-
-

IDEs

+
+
+

+ + IDEs +

+
-
+
-
+ +
-
+
{comingSoon.map((name) => ( -
-
- -
-

{name}

-

Coming Soon

+ +
+
+ +
+

{name}

+

Download now

+
-
+ ))}
diff --git a/app/(loggedIn)/settings/form.tsx b/app/(loggedIn)/settings/form.tsx index d4c61d69a..2ea78d3af 100644 --- a/app/(loggedIn)/settings/form.tsx +++ b/app/(loggedIn)/settings/form.tsx @@ -67,10 +67,11 @@ export default function form({ userEmail }) { function SettingsSelector({ label, valueLabel }) { return ( -
- {label} +
+ {" "} + {label}{" "} + ))}{" "} + {" "}
); } @@ -99,10 +102,10 @@ export default function form({ userEmail }) { label={service.label} /> ))} -
+
AI Summary: - ); -} diff --git a/components/JiraLoginLink.tsx b/components/JiraLoginLink.tsx index 9986c1765..0c834f9b1 100644 --- a/components/JiraLoginLink.tsx +++ b/components/JiraLoginLink.tsx @@ -1,21 +1,31 @@ import Link from "next/link"; const JiraLoginLink = ({ userEmail }) => ( -
- -
- -
-

Login to Jira

-

View your Most Relevant Ticket and Active Tickets

+
+
+

+ + Jira +

+
+ +
+ +
+ +
+

Login to Jira

+

Index Relevant Tickets

+
-
- + +
); + export default JiraLoginLink; diff --git a/components/LinearLoginLink.tsx b/components/LinearLoginLink.tsx index dc8f9df4f..426e3b6f9 100644 --- a/components/LinearLoginLink.tsx +++ b/components/LinearLoginLink.tsx @@ -1,19 +1,29 @@ import Link from "next/link"; const LinearLoginLink = ({ userEmail }) => ( -
- -
- -
-

Login to Linear

-

View your Most Relevant Tickets

+
+
+

+ + Linear +

+
+ +
+ +
+ +
+

Login to Linear

+

Index Relevant Tickets

+
-
- + +
); + export default LinearLoginLink; diff --git a/components/Navbar.tsx b/components/Navbar.tsx index f8789766f..386d45634 100644 --- a/components/Navbar.tsx +++ b/components/Navbar.tsx @@ -1,42 +1,38 @@ import Link from "next/link"; -import HeaderSignOut from "./HeaderSignOut"; +import { signOut } from "next-auth/react"; export default function Navbar({ children }: { children: React.ReactNode }) { const links = [ { href: "/", label: "Home" }, { href: "/settings", label: "Settings" }, { href: "/team", label: "Team" }, - { href: "https://calendly.com/evargas-14/watermelon-business", label: "Billing" }, + { + href: "https://calendly.com/evargas-14/watermelon-business", + label: "Billing", + }, + { href: "/api/auth/signout", label: "Logout", onClick: signOut }, ]; return ( -
-