diff --git a/src/app/irrigation/page.tsx b/src/app/irrigation/page.tsx new file mode 100644 index 0000000..9eb7461 --- /dev/null +++ b/src/app/irrigation/page.tsx @@ -0,0 +1,47 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; +import FooterCard from '@/components/sections/footer/FooterCard'; + +export default function IrrigationPage() { + return ( + + + + + + + + ); +}