diff --git a/frontend/components/Hero.tsx b/frontend/components/Hero.tsx index b72227c..8b56157 100644 --- a/frontend/components/Hero.tsx +++ b/frontend/components/Hero.tsx @@ -1,38 +1,53 @@ -"use client" -import { useRouter } from "next/navigation" -import { Feature } from "./Feature" -import { PrimaryButton } from "./buttons/PrimaryButton" -import { SecondaryButton } from "./buttons/SecondaryButton" +"use client"; +import { useRouter } from "next/navigation"; +import { Feature } from "./Feature"; +import { PrimaryButton } from "./buttons/PrimaryButton"; +import { SecondaryButton } from "./buttons/SecondaryButton"; export const Hero = () => { - const router = useRouter(); - return
-
-
- Automate as fast as you can type -
+ const router = useRouter(); + return ( +
+
+
+ Automate as fast as you can type
-
-
- AI gives you automation superpowers, and Zapier puts them to work. Pairing AI and Zapier helps you turn ideas into workflows and bots that work for you. -
+
+
+
+ AI gives you automation superpowers, and Zapier puts them to work. + Pairing AI and Zapier helps you turn ideas into workflows and bots + that work for you.
+
-
-
- { - router.push("/signup") - }} size="big">Get Started free -
- {}} size="big">Contact Sales -
+
+
+
+ { + router.push("/signup"); + }} + size="big" + > + Get Started free + +
+
+
+ {}} size="big"> + Contact Sales +
+
+
-
- - - -
+
+ + + +
-} \ No newline at end of file + ); +}; diff --git a/frontend/components/buttons/PrimaryButton.tsx b/frontend/components/buttons/PrimaryButton.tsx index 48efaab..e85ba6d 100644 --- a/frontend/components/buttons/PrimaryButton.tsx +++ b/frontend/components/buttons/PrimaryButton.tsx @@ -1,11 +1,23 @@ -import { ReactNode } from "react" +import { ReactNode } from "react"; -export const PrimaryButton = ({ children, onClick, size = "small" }: { - children: ReactNode, - onClick: () => void, - size?: "big" | "small" +export const PrimaryButton = ({ + children, + onClick, + size = "small", +}: { + children: ReactNode; + onClick: () => void; + size?: "big" | "small"; }) => { - return
- {children} + return ( +
+ {children}
-} \ No newline at end of file + ); +}; diff --git a/frontend/components/buttons/SecondaryButton.tsx b/frontend/components/buttons/SecondaryButton.tsx index 04f3e7a..4e7e6d9 100644 --- a/frontend/components/buttons/SecondaryButton.tsx +++ b/frontend/components/buttons/SecondaryButton.tsx @@ -1,11 +1,22 @@ -import { ReactNode } from "react" +import { ReactNode } from "react"; -export const SecondaryButton = ({ children, onClick, size = "small" }: { - children: ReactNode, - onClick: () => void, - size?: "big" | "small" +export const SecondaryButton = ({ + children, + onClick, + size = "small", +}: { + children: ReactNode; + onClick: () => void; + size?: "big" | "small"; }) => { - return
- {children} + return ( +
+ {children}
-} \ No newline at end of file + ); +};