diff --git a/README.md b/README.md index 3bc232305d..a3f8b48f1b 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Spin up new coding tasks while waiting for your current agent to finish. Quickly - [ ] Automate reviewing and feedback - [ ] Create and manage Git pull requests -example-min +example ## Getting Started diff --git a/apps/website/package.json b/apps/website/package.json index 46835bf5b7..10f00981ee 100644 --- a/apps/website/package.json +++ b/apps/website/package.json @@ -21,6 +21,7 @@ "framer-motion": "^12.23.24", "geist": "^1.5.1", "next": "^15.1.6", + "next-themes": "^0.4.6", "react": "^19.1.1", "react-dom": "^19.1.1", "react-fast-marquee": "^1.6.5", diff --git a/apps/website/public/example.png b/apps/website/public/example.png deleted file mode 100644 index b003efb505..0000000000 Binary files a/apps/website/public/example.png and /dev/null differ diff --git a/apps/website/public/hero/change-themes.gif b/apps/website/public/hero/change-themes.gif new file mode 100644 index 0000000000..0ac250d602 Binary files /dev/null and b/apps/website/public/hero/change-themes.gif differ diff --git a/apps/website/public/hero/customize-themes.gif b/apps/website/public/hero/customize-themes.gif deleted file mode 100644 index 01fa611f99..0000000000 Binary files a/apps/website/public/hero/customize-themes.gif and /dev/null differ diff --git a/apps/website/public/hero/open-worktrees.gif b/apps/website/public/hero/open-worktrees.gif new file mode 100644 index 0000000000..90809ea3ff Binary files /dev/null and b/apps/website/public/hero/open-worktrees.gif differ diff --git a/apps/website/public/hero/use-agents.gif b/apps/website/public/hero/use-agents.gif new file mode 100644 index 0000000000..9c3e84886f Binary files /dev/null and b/apps/website/public/hero/use-agents.gif differ diff --git a/apps/website/src/app/components/CTASection/CTASection.tsx b/apps/website/src/app/components/CTASection/CTASection.tsx new file mode 100644 index 0000000000..f8932a60b2 --- /dev/null +++ b/apps/website/src/app/components/CTASection/CTASection.tsx @@ -0,0 +1,37 @@ +"use client"; + +import { motion } from "framer-motion"; +import { HiMiniArrowDownTray } from "react-icons/hi2"; + +export function CTASection() { + return ( +
+
+ + Give us a try + + + + + Download for MacOS + + + +
+
+ ); +} diff --git a/apps/website/src/app/components/CTASection/index.ts b/apps/website/src/app/components/CTASection/index.ts new file mode 100644 index 0000000000..ed7a95a051 --- /dev/null +++ b/apps/website/src/app/components/CTASection/index.ts @@ -0,0 +1 @@ +export { CTASection } from "./CTASection"; diff --git a/apps/website/src/app/components/Footer/Footer.tsx b/apps/website/src/app/components/Footer/Footer.tsx index c20b81cb6f..3db3052410 100644 --- a/apps/website/src/app/components/Footer/Footer.tsx +++ b/apps/website/src/app/components/Footer/Footer.tsx @@ -1,9 +1,28 @@ "use client"; import { motion } from "framer-motion"; -import Image from "next/image"; +import Link from "next/link"; import { SocialLinks } from "../SocialLinks"; +function SupersetLogo() { + return ( + + Superset + + + ); +} + export function Footer() { return (