Teamwork Services Overview - Copy this React, Tailwind Component to your project
import React from 'react'; import { LinkIcon } from 'lucide-react'; const BusinessSection = () => { return ( <section className="py-12 px-4 text-left bg-gray-50"> <div className="max-w-6xl mx-auto"> <div className="mb-10"> <img src="https://via.placeholder.com/600x400" alt="Teamwork" className="w-full h-auto object-cover rounded-lg shadow-md" /> <h2 className="text-4xl font-bold text-gray-900 mt-8 mb-4">Empower Your Business</h2> <p className="text-gray-700 mb-8"> Make collaboration and code management seamless with our suite of tools designed for companies of any size. </p> </div> <div className="grid md:grid-cols-2 gap-12"> <div className="mb-8 md:mb-0"> <h3 className="text-2xl font-semibold mb-4">Private Repositories</h3> <p className="text-gray-700 mb-4"> Keep your proprietary code confidential with unlimited private repositories. </p> <a href="/learn-more-private-repos" className="flex items-center text-indigo-600 hover:text-indigo-800 transition duration-150 ease-in-out" > Learn more <LinkIcon className="ml-2 w-5 h-5" /> </a> </div> <div> <h3 className="text-2xl font-semibold mb-4">Code Scanning and Review</h3> <p className="text-gray-700 mb-4"> Identify vulnerabilities and improve code quality with automated scans and peer reviews. </p> <a href="/learn-more-code-scanning" className="flex items-center text-indigo-600 hover:text-indigo-800 transition duration-150 ease-in-out" > Learn more <LinkIcon className="ml-2 w-5 h-5" /> </a> </div> </div> </div> </section> ); }; export default BusinessSection;
