-
+
+
-
- {/*
*/}
+
+ {t("announcement.description")}
+
+
+
+ {t("announcement.button")}
+
diff --git a/apps/next/src/components/Layout/MainLayout/Banner/product.hunt.tsx b/apps/next/src/components/Layout/MainLayout/Banner/product.hunt.tsx
new file mode 100644
index 00000000..4aa5cfe1
--- /dev/null
+++ b/apps/next/src/components/Layout/MainLayout/Banner/product.hunt.tsx
@@ -0,0 +1,27 @@
+import { useTheme } from "next-themes";
+import React from "react";
+
+export default function ProductHunt({ height, width }: any) {
+ const { theme, systemTheme } = useTheme();
+
+ const themes =
+ theme === "system" ? systemTheme : theme === "dark" ? "ligth" : "dark";
+
+ return (
+
+
+
+ );
+}
diff --git a/apps/next/src/components/Layout/MainLayout/index.tsx b/apps/next/src/components/Layout/MainLayout/index.tsx
index 0014d3f7..ad1ab78c 100644
--- a/apps/next/src/components/Layout/MainLayout/index.tsx
+++ b/apps/next/src/components/Layout/MainLayout/index.tsx
@@ -1,7 +1,6 @@
-import { type PropsWithChildren } from "react";
-
import Banner from "./Banner";
import HomeHeader from "./Header";
+import { type PropsWithChildren } from "react";
const MainLayout: React.FC
= ({ children }) => {
return (