-
-
{
- 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
+ );
+};