Add src/app/drone-agriculture/page.tsx

This commit is contained in:
2026-05-05 10:43:59 +00:00
parent 7df32e6a16
commit bb1342f7b4

View File

@@ -0,0 +1,37 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function DroneAgriculturePage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleApple
navItems={[{name: "Home", id: "/"}, {name: "Drone Agriculture", id: "/drone-agriculture"}, {name: "Software Development", id: "/software-development"}, {name: "About", id: "/about"}, {name: "Contact", id: "/contact"}]}
brandName="GreyTech"
/>
<div className="pt-32 pb-20">
<FeatureCardSeven
animationType="slide-up"
textboxLayout="split"
title="Drone Agriculture Services"
description="Maximizing farm productivity through advanced aerial technology and precision data collection."
features={[
{ title: "Aerial Crop Mapping", description: "High-resolution multispectral mapping to identify crop health and stress indicators." },
{ title: "Precision Spraying", description: "Automated targeted application of fertilizers and pesticides to reduce waste and optimize yield." },
{ title: "Field Analytics", description: "Advanced reporting on growth stages and field topography to inform planning." }
]}
/>
</div>
<FooterLogoEmphasis
columns={[{items: [{label: "Home", href: "/"}, {label: "Drone Agriculture", href: "/drone-agriculture"}, {label: "Software Development", href: "/software-development"}]}, {items: [{label: "About", href: "/about"}, {label: "Contact", href: "/contact"}]}]}
logoText="GreyTech"
/>
</ReactLenis>
</ThemeProvider>
);
}