From d6d69a30413b827cf470c49e155f9c2a93cdd25a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 20 Jun 2026 22:20:43 +0000 Subject: [PATCH 1/2] Bob AI: Add envi-heater page --- src/App.tsx | 2 + src/components/Layout.tsx | 4 +- src/pages/EnviHeaterPage.tsx | 79 ++++++++++++++++++++++++++++++++++++ src/routes.ts | 1 + 4 files changed, 85 insertions(+), 1 deletion(-) create mode 100644 src/pages/EnviHeaterPage.tsx diff --git a/src/App.tsx b/src/App.tsx index 33d15f9..91875bd 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom'; import Layout from './components/Layout'; import HomePage from './pages/HomePage'; +import EnviHeaterPage from "@/pages/EnviHeaterPage"; export default function App() { return ( }> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 2fce928..b72a8c8 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -34,7 +34,9 @@ export default function Layout() { { "name": "Faq", "href": "#faq" - } + }, + { name: "Envi Heater", href: "/envi-heater" }, + ]; return ( diff --git a/src/pages/EnviHeaterPage.tsx b/src/pages/EnviHeaterPage.tsx new file mode 100644 index 0000000..56defb0 --- /dev/null +++ b/src/pages/EnviHeaterPage.tsx @@ -0,0 +1,79 @@ +import React from "react"; +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; +import TestimonialRatingCards from "@/components/sections/testimonial/TestimonialRatingCards"; +import FooterMinimal from "@/components/sections/footer/FooterMinimal"; + +export default function EnviHeaterPage() { + return ( +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Buy Now", href: "/checkout" }} + /> + +
+ + + + + +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 362ecb5..cf760ce 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,4 +6,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, + { path: '/envi-heater', label: 'Envi Heater', pageFile: 'EnviHeaterPage' }, ]; -- 2.49.1 From a938c08f1a960cab18bc14db14cc7893f74af813 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 20 Jun 2026 22:21:31 +0000 Subject: [PATCH 2/2] Bob AI: Populate src/pages/EnviHeaterPage.tsx (snippet builder, 3 sections) --- src/pages/EnviHeaterPage.tsx | 92 +++++++----------------------------- 1 file changed, 18 insertions(+), 74 deletions(-) diff --git a/src/pages/EnviHeaterPage.tsx b/src/pages/EnviHeaterPage.tsx index 56defb0..7799196 100644 --- a/src/pages/EnviHeaterPage.tsx +++ b/src/pages/EnviHeaterPage.tsx @@ -1,79 +1,23 @@ -import React from "react"; -import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import HeroSplit from "@/components/sections/hero/HeroSplit"; +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import AvatarGroup from "@/components/ui/AvatarGroup"; import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit"; -import TestimonialRatingCards from "@/components/sections/testimonial/TestimonialRatingCards"; -import FooterMinimal from "@/components/sections/footer/FooterMinimal"; +import ScrollReveal from "@/components/ui/ScrollReveal"; export default function EnviHeaterPage() { return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Buy Now", href: "/checkout" }} - /> - -
- - - - - -
- - -
+ <> +
+
+

Elevate Your Home

+ ); -} \ No newline at end of file +} -- 2.49.1