From d6d69a30413b827cf470c49e155f9c2a93cdd25a Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sat, 20 Jun 2026 22:20:43 +0000 Subject: [PATCH] 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' }, ];