diff --git a/app/components/syntax/HeroBackground.tsx b/app/components/syntax/HeroBackground.tsx
index 82a7688..5385d69 100644
--- a/app/components/syntax/HeroBackground.tsx
+++ b/app/components/syntax/HeroBackground.tsx
@@ -1,4 +1,4 @@
-import { useId } from "react";
+import React, { useId } from "react";
export function HeroBackground(props: React.ComponentPropsWithoutRef<"svg">) {
const id = useId();
diff --git a/app/components/syntax/Icon.tsx b/app/components/syntax/Icon.tsx
index e5c3fde..2af0a22 100644
--- a/app/components/syntax/Icon.tsx
+++ b/app/components/syntax/Icon.tsx
@@ -5,7 +5,7 @@ import { PluginsIcon } from "@syntax/icons/PluginsIcon";
import { PresetsIcon } from "@syntax/icons/PresetsIcon";
import { ThemingIcon } from "@syntax/icons/ThemingIcon";
import { WarningIcon } from "@syntax/icons/WarningIcon";
-import { useId } from "react";
+import React, { useId } from "react";
import clsx from "clsx";
const icons = {
diff --git a/app/components/syntax/Logo.tsx b/app/components/syntax/Logo.tsx
index c7e787e..174c2d3 100644
--- a/app/components/syntax/Logo.tsx
+++ b/app/components/syntax/Logo.tsx
@@ -1,11 +1,6 @@
-function LogomarkPaths() {
- // return (
- //
- //
- //
- //
- // );
+import React from "react";
+function LogomarkPaths() {
return (
<>
@@ -33,25 +28,6 @@ function LogomarkPaths() {
);
}
-export function LogoWithText(props: React.ComponentPropsWithoutRef<"svg">) {
- return (
-
- );
-}
-
export function Logo(props: React.ComponentPropsWithoutRef<"svg">) {
return (