techfarm-nexus-buzz / services.html
charmhyn's picture
use these codes here as inspiration to develop the services page for the TECHFARM HUB or the index.html file from earlier use the colors and structure of the earlier file.
c2ea46c verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Our Services | TECHFARM Hub - Empowering Agri-Tech Innovators</title>
<meta
name="description"
content="Discover our comprehensive services to support agri-tech innovation at every stage - from training and mentorship to funding and startup support."
/>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico" />
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet" />
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"
defer
></script>
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
.gradient-bg {
background: linear-gradient(135deg, #7a1a61 0%, #3b82f6 100%);
}
.gradient-text {
background: linear-gradient(135deg, #7a1a61 0%, #3b82f6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.service-card {
transition: all 0.3s ease;
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
@keyframes pulse {
0%,
100% {
opacity: 0.4;
transform: scale(0.9);
}
50% {
opacity: 1;
transform: scale(1.1);
}
}
.animate-pulse-slow {
animation: pulse 4s infinite;
}
@media (max-width: 768px) {
.hero-section {
padding-top: 100px;
padding-bottom: 60px;
}
}
</style>
</head>
<body class="font-sans bg-gray-50">
<!-- Navigation -->
<nav
class="fixed w-full z-50 bg-white shadow-sm"
x-data="{ mobileMenu: false }"
>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-20 items-center">
<div class="flex-shrink-0 flex items-center">
<img
src="images/logo.png"
alt="TECHFARM Hub Logo"
class="h-12 w-auto"
/>
</div>
<div class="hidden lg:block">
<div class="ml-10 flex items-center space-x-8">
<a
href="index.html"
class="text-gray-900 hover:text-secondary-600 px-3 py-2 text-sm font-medium transition-colors duration-200"
>Home</a
>
<a
href="about.html"
class="text-gray-900 hover:text-secondary-600 px-3 py-2 text-sm font-medium transition-colors duration-200"
>About</a
>
<a
href="services.html"
class="text-primary-600 font-medium px-3 py-2 text-sm"
>Services</a
>
<a
href="#programs"
class="text-gray-900 hover:text-secondary-600 px-3 py-2 text-sm font-medium transition-colors duration-200"
>Programs</a
>
<a
href="#events"
class="text-gray-900 hover:text-secondary-600 px-3 py-2 text-sm font-medium transition-colors duration-200"
>Events</a
>
<a
href="#contact"
class="text-gray-900 hover:text-secondary-600 px-3 py-2 text-sm font-medium transition-colors duration-200"
>Contact</a
>
<a
href="#"
class="bg-secondary-600 text-white px-6 py-2 rounded-md text-sm font-medium hover:bg-secondary-700 transition-colors duration-300 focus:outline-none focus:ring-2 focus:ring-secondary-500 focus:ring-offset-2"
>Get Started</a
>
</div>
</div>
<div class="lg:hidden">
<button
@click="mobileMenu = !mobileMenu"
type="button"
class="inline-flex items-center justify-center p-2 rounded-md text-gray-700 hover:text-secondary-600 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-primary-500"
:aria-expanded="mobileMenu"
>
<span class="sr-only">Open main menu</span>
<i data-feather="menu" class="w-6 h-6"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div
x-show="mobileMenu"
x-transition:enter="transition ease-out duration-200"
x-transition:enter-start="opacity-0 -translate-y-4"
x-transition:enter-end="opacity-100 translate-y-0"
x-transition:leave="transition ease-in duration-150"
x-transition:leave-start="opacity-100 translate-y-0"
x-transition:leave-end="opacity-0 -translate-y-4"
class="lg:hidden mobile-menu bg-white shadow-lg"
role="dialog"
aria-modal="true"
>
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a
href="index.html"
class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-secondary-600 hover:bg-gray-100"
>Home</a
>
<a
href="about.html"
class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-secondary-600 hover:bg-gray-100"
>About</a
>
<a
href="services.html"
class="block px-3 py-2 rounded-md text-base font-medium text-primary-600 bg-primary-50"
>Services</a
>
<a
href="#programs"
class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-secondary-600 hover:bg-gray-100"
>Programs</a
>
<a
href="#events"
class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-secondary-600 hover:bg-gray-100"
>Events</a
>
<a
href="#contact"
class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:text-secondary-600 hover:bg-gray-100"
>Contact</a
>
<a
href="#"
class="block px-3 py-2 rounded-md text-base font-medium bg-secondary-600 text-white hover:bg-secondary-700 focus:outline-none focus:ring-2 focus:ring-secondary-500 focus:ring-offset-2"
>Get Started</a
>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="pt-32 pb-20 gradient-bg relative overflow-hidden">
<div class="absolute inset-0 bg-black opacity-10"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="text-center">
<h1
class="text-4xl md:text-5xl lg:text-6xl font-bold text-white mb-6"
data-aos="fade-up"
>
Our <span class="animate-pulse-slow">Services</span>
</h1>
<p
class="text-xl text-white opacity-90 max-w-3xl mx-auto mb-8"
data-aos="fade-up"
data-aos-delay="100"
>
Comprehensive support for agri-tech innovators at every stage of
their journey
</p>
</div>
</div>
</section>
<!-- Services Section -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2
class="text-3xl md:text-4xl font-bold text-gray-900 mb-4"
>
Empowering Your Agri-Tech
<span class="gradient-text">Innovation</span>
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
We provide the tools, knowledge, and network to help your agri-tech
venture thrive
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Training and Workshops -->
<div
class="bg-white p-8 rounded-xl shadow-md service-card"
data-aos="fade-up"
data-aos-delay="100"
>
<div
class="bg-primary-100 w-16 h-16 rounded-lg flex items-center justify-center mb-6"
>
<i data-feather="book-open" class="w-8 h-8 text-primary-600"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">
Training and Workshops
</h3>
<p class="text-gray-600 mb-4">
Hands-on training sessions and workshops covering the latest
agri-tech innovations and sustainable practices.
</p>
<ul class="space-y-2 mb-6">
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Technical skills development</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Sustainable farming techniques</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Emerging technologies</span>
</li>
</ul>
<a
href="#"
class="inline-flex items-center text-primary-600 font-medium hover:text-primary-800 transition-colors duration-200"
>
Learn more
<i data-feather="arrow-right" class="ml-2 w-5 h-5"></i>
</a>
</div>
<!-- Mentorship Programs -->
<div
class="bg-white p-8 rounded-xl shadow-md service-card"
data-aos="fade-up"
data-aos-delay="200"
>
<div
class="bg-secondary-100 w-16 h-16 rounded-lg flex items-center justify-center mb-6"
>
<i data-feather="users" class="w-8 h-8 text-secondary-600"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">
Mentorship Programs
</h3>
<p class="text-gray-600 mb-4">
One-on-one guidance from industry experts to help you navigate
challenges and accelerate your agri-tech venture.
</p>
<ul class="space-y-2 mb-6">
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Personalized guidance</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Industry connections</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Business strategy</span>
</li>
</ul>
<a
href="#"
class="inline-flex items-center text-primary-600 font-medium hover:text-primary-800 transition-colors duration-200"
>
Learn more
<i data-feather="arrow-right" class="ml-2 w-5 h-5"></i>
</a>
</div>
<!-- Startup Support -->
<div
class="bg-white p-8 rounded-xl shadow-md service-card"
data-aos="fade-up"
data-aos-delay="300"
>
<div
class="bg-accent-100 w-16 h-16 rounded-lg flex items-center justify-center mb-6"
>
<i data-feather="trending-up" class="w-8 h-8 text-accent-600"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Startup Support</h3>
<p class="text-gray-600 mb-4">
Comprehensive support for agri-tech startups including funding
opportunities, incubation, and access to resources.
</p>
<ul class="space-y-2 mb-6">
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Funding opportunities</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Incubation programs</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Market access</span>
</li>
</ul>
<a
href="#"
class="inline-flex items-center text-primary-600 font-medium hover:text-primary-800 transition-colors duration-200"
>
Learn more
<i data-feather="arrow-right" class="ml-2 w-5 h-5"></i>
</a>
</div>
<!-- Research and Development -->
<div
class="bg-white p-8 rounded-xl shadow-md service-card"
data-aos="fade-up"
data-aos-delay="400"
>
<div
class="bg-primary-100 w-16 h-16 rounded-lg flex items-center justify-center mb-6"
>
<i data-feather="search" class="w-8 h-8 text-primary-600"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">
Research and Development
</h3>
<p class="text-gray-600 mb-4">
Cutting-edge R&D facilities and partnerships to test and validate
your agricultural innovations.
</p>
<ul class="space-y-2 mb-6">
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Field trials</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Prototype development</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Technology validation</span>
</li>
</ul>
<a
href="#"
class="inline-flex items-center text-primary-600 font-medium hover:text-primary-800 transition-colors duration-200"
>
Learn more
<i data-feather="arrow-right" class="ml-2 w-5 h-5"></i>
</a>
</div>
<!-- Funding Opportunities -->
<div
class="bg-white p-8 rounded-xl shadow-md service-card"
data-aos="fade-up"
data-aos-delay="500"
>
<div
class="bg-secondary-100 w-16 h-16 rounded-lg flex items-center justify-center mb-6"
>
<i data-feather="dollar-sign" class="w-8 h-8 text-secondary-600"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">
Funding Opportunities
</h3>
<p class="text-gray-600 mb-4">
Access to grants, investments, and financial resources to bring
your agri-tech solutions to market.
</p>
<ul class="space-y-2 mb-6">
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Grants and awards</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Investor connections</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Pitch preparation</span>
</li>
</ul>
<a
href="#"
class="inline-flex items-center text-primary-600 font-medium hover:text-primary-800 transition-colors duration-200"
>
Learn more
<i data-feather="arrow-right" class="ml-2 w-5 h-5"></i>
</a>
</div>
<!-- Market Access -->
<div
class="bg-white p-8 rounded-xl shadow-md service-card"
data-aos="fade-up"
data-aos-delay="600"
>
<div
class="bg-accent-100 w-16 h-16 rounded-lg flex items-center justify-center mb-6"
>
<i data-feather="globe" class="w-8 h-8 text-accent-600"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Market Access</h3>
<p class="text-gray-600 mb-4">
Connections to markets, buyers, and distribution channels for your
agricultural products and technologies.
</p>
<ul class="space-y-2 mb-6">
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Buyer networks</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Export opportunities</span>
</li>
<li class="flex items-start">
<i data-feather="check" class="w-4 h-4 text-primary-600 mr-2 mt-1"></i>
<span class="text-gray-600">Distribution support</span>
</li>
</ul>
<a
href="#"
class="inline-flex items-center text-primary-600 font-medium hover:text-primary-800 transition-colors duration-200"
>
Learn more
<i data-feather="arrow-right" class="ml-2 w-5 h-5"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16" data-aos="fade-up">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">
What Our <span class="gradient-text">Community</span> Says
</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Hear from innovators who have benefited from our services
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<div
class="bg-white p-8 rounded-xl shadow-md"
data-aos="fade-up"
data-aos-delay="100"
>
<div class="flex items-center mb-6">
<img
src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-1.2.1&auto=format&fit=crop&w=100&q=80"
alt="Sarah Johnson"
class="w-16 h-16 rounded-full object-cover"
/>
<div class="ml-4">
<h4 class="font-bold text-gray-900">Sarah Johnson</h4>
<p class="text-primary-600">Founder, AgriSense</p>
</div>
</div>
<p class="text-gray-600 italic">
"The mentorship program connected me with industry experts who provided invaluable guidance that shaped our product development and go-to-market strategy."
</p>
<div class="flex mt-4 text-accent-400">
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
</div>
</div>
<div
class="bg-white p-8 rounded-xl shadow-md"
data-aos="fade-up"
data-aos-delay="200"
>
<div class="flex items-center mb-6">
<img
src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-1.2.1&auto=format&fit=crop&w=100&q=80"
alt="Michael Chen"
class="w-16 h-16 rounded-full object-cover"
/>
<div class="ml-4">
<h4 class="font-bold text-gray-900">Michael Chen</h4>
<p class="text-primary-600">CEO, GreenHarvest</p>
</div>
</div>
<p class="text-gray-600 italic">
"The accelerator program gave us access to funding and resources we couldn't have found elsewhere. Our agri-tech startup wouldn't be where it is today without TECHFARM Hub."
</p>
<div class="flex mt-4 text-accent-400">
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
</div>
</div>
<div
class="bg-white p-8 rounded-xl shadow-md"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="flex items-center mb-6">
<img
src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-1.2.1&auto=format&fit=crop&w=100&q=80"
alt="David Kimani"
class="w-16 h-16 rounded-full object-cover"
/>
<div class="ml-4">
<h4 class="font-bold text-gray-900">David Kimani</h4>
<p class="text-primary-600">CTO, CropMetrics</p>
</div>
</div>
<p class="text-gray-600 italic">
"The technical training workshops gave our team the skills we needed to implement precision agriculture technologies on our farm, increasing yields by 30%."
</p>
<div class="flex mt-4 text-accent-400">
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
<i data-feather="star" class="w-5 h-5 fill-current"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 gradient-bg text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2
class="text-3xl md:text-4xl font-bold text-white mb-6"
data-aos="fade-up"
>
Ready to Grow Your Agri-Tech Venture?
</h2>
<p
class="text-xl text-white opacity-90 max-w-3xl mx-auto mb-10"
data-aos="fade-up"
data-aos-delay="100"
>
Join our community of innovators shaping the future of sustainable
agriculture.
</p>
<div
class="flex flex-wrap justify-center gap-4"
data-aos="fade-up"
data-aos-delay="200"
>
<a
href="#"
class="bg-white text-primary-700 px-8 py-3 rounded-md text-lg font-semibold hover:bg-gray-100 transition-colors duration-300 focus:outline-none focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-primary-700"
>Apply for Funding</a
>
<a
href="#"
class="border-2 border-white text-white px-8 py-3 rounded-md text-lg font-semibold hover:bg-white hover:text-primary-700 transition-colors duration-300 focus:outline-none focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-primary-700"
>Explore Programs</a
>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-12 mb-12">
<div>
<img
src="images/logo.png"
alt="TECHFARM Hub Logo"
class="h-10 mb-6"
/>
<p class="text-gray-400 mb-6">
Empowering the next generation of agri-tech innovators through
investment, education, and community.
</p>
<div class="flex space-x-4">
<a
href="#"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-gray-900 rounded-full p-1"
aria-label="Twitter"
>
<i data-feather="twitter" class="w-5 h-5"></i>
</a>
<a
href="#"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-gray-900 rounded-full p-1"
aria-label="LinkedIn"
>
<i data-feather="linkedin" class="w-5 h-5"></i>
</a>
<a
href="#"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-gray-900 rounded-full p-1"
aria-label="Facebook"
>
<i data-feather="facebook" class="w-5 h-5"></i>
</a>
<a
href="#"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:ring-2 focus:ring-white focus:ring-offset-2 focus:ring-offset-gray-900 rounded-full p-1"
aria-label="Instagram"
>
<i data-feather="instagram" class="w-5 h-5"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-semibold mb-6">Quick Links</h4>
<ul class="space-y-3">
<li>
<a
href="index.html"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:underline rounded-sm"
>Home</a
>
</li>
<li>
<a
href="about.html"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:underline rounded-sm"
>About Us</a
>
</li>
<li>
<a
href="services.html"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:underline rounded-sm"
>Services</a
>
</li>
<li>
<a
href="#programs"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:underline rounded-sm"
>Programs</a
>
</li>
<li>
<a
href="#events"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:underline rounded-sm"
>Events</a
>
</li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-6">Services</h4>
<ul class="space-y-3">
<li>
<a
href="#"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:underline rounded-sm"
>Training & Workshops</a
>
</li>
<li>
<a
href="#"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:underline rounded-sm"
>Mentorship</a
>
</li>
<li>
<a
href="#"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:underline rounded-sm"
>Startup Support</a
>
</li>
<li>
<a
href="#"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:underline rounded-sm"
>Funding</a
>
</li>
<li>
<a
href="#"
class="text-gray-400 hover:text-white transition-colors duration-300 focus:outline-none focus:underline rounded-sm"
>Market Access</a
>
</li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-6">Newsletter</h4>
<p class="text-gray-400 mb-4">
Subscribe to our newsletter for the latest updates and
opportunities.
</p>
<form class="flex">
<input
type="email"
placeholder="Your email"
class="px-4 py-2 rounded-l-md w-full text-gray-900 focus:outline-none focus:ring-2 focus:ring-primary-500"
aria-label="Email for newsletter subscription"
required
/>
<button
type="submit"
class="bg-primary-600 text-white px-4 py-2 rounded-r-md hover:bg-primary-700 transition-colors duration-300 focus:outline-none focus:ring-2 focus:ring-primary-500 focus:ring-offset-2"
aria-label="Subscribe to newsletter"
>
<i data-feather="send" class="w-5 h-5"></i>
</button>
</form>
</div>
</div>
<div
class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center"
>
<p class="text-gray-400 text-sm mb-4 md:mb-0">
© 2023 TECHFARM Hub. All rights reserved.
</p>
<div class="flex space-x-6">
<a
href="#"
class="text-gray-400 hover:text-white text-sm transition-colors duration-300 focus:outline-none focus:underline rounded-sm"
>Privacy Policy</a
>
<a
href="#"
class="text-gray-400 hover:text-white text-sm transition-colors duration-300 focus:outline-none focus:underline rounded-sm"
>Terms of Service</a
>
</div>
</div>
</div>
</footer>
<script>
// Initialize AOS
AOS.init({
duration: 800,
once: true,
offset: 100,
});
// Initialize Feather Icons
feather.replace();
</script>
</body>
</html>