+
+
+ );
+};
-export default Solutions;
\ No newline at end of file
+export default Solutions;
diff --git a/src/widgets/01-home-screens/ui/08-trailblazer/index.tsx b/src/widgets/01-home-screens/ui/08-trailblazer/index.tsx
new file mode 100644
index 0000000..4c59128
--- /dev/null
+++ b/src/widgets/01-home-screens/ui/08-trailblazer/index.tsx
@@ -0,0 +1,33 @@
+import { useTranslation } from "next-i18next";
+import React from "react";
+import { HomeScreensEnum } from "widgets/01-home-screens/lib/types";
+import css from "./trailblazer.module.scss";
+import { TrailblazerBanner } from "shared/components/trailblazer";
+import { Button } from "shared/components/@buttons/button";
+
+const Trailblazer: React.FC = () => {
+ const { t } = useTranslation("home");
+
+ return (
+
+
+
+ }
+ fullwidth
+ />
+
+
+ );
+};
+
+export default Trailblazer;
diff --git a/src/widgets/01-home-screens/ui/08-trailblazer/trailblazer.module.scss b/src/widgets/01-home-screens/ui/08-trailblazer/trailblazer.module.scss
new file mode 100644
index 0000000..ef41d36
--- /dev/null
+++ b/src/widgets/01-home-screens/ui/08-trailblazer/trailblazer.module.scss
@@ -0,0 +1,10 @@
+.trailblazer {
+ // Default styles
+ padding: 20px;
+}
+
+.group {
+ display: flex;
+ flex-direction: column;
+ gap: 20px;
+}
diff --git a/src/widgets/01-home-screens/ui/index.ts b/src/widgets/01-home-screens/ui/index.ts
index 83079b0..8420c4a 100644
--- a/src/widgets/01-home-screens/ui/index.ts
+++ b/src/widgets/01-home-screens/ui/index.ts
@@ -1,9 +1,10 @@
-export { default as Hero } from './01-hero';
-export { default as Advantages } from './03-advantages';
-export { default as About } from './02-about';
-export { default as Solutions } from './04-solutions';
-export { default as Ecosystem } from './05-ecosystem';
-export { default as Community } from './06-community';
-export { default as Blog } from './07-blog';
-export { default as StickyContent } from './sticky-content';
-export { default as GradientFill } from './gradient-fill';
\ No newline at end of file
+export { default as Hero } from "./01-hero";
+export { default as Advantages } from "./03-advantages";
+export { default as About } from "./02-about";
+export { default as Solutions } from "./04-solutions";
+export { default as Ecosystem } from "./05-ecosystem";
+export { default as Community } from "./06-community";
+export { default as Blog } from "./07-blog";
+export { default as Trailblazer } from "./08-trailblazer";
+export { default as StickyContent } from "./sticky-content";
+export { default as GradientFill } from "./gradient-fill";