// src/app/page.js
import Image from "next/image";
export default function Home() {
const logos = [
{
name: 'React',
url:
'https://media.geeksforgeeks.org/wp-content/uploads/20240920111219/reacticon.png',
alt: 'React Logo'
},
{
name: 'Tailwind CSS',
url:
'https://media.geeksforgeeks.org/wp-content/uploads/20240920111323/Tailwind-CSS.png',
alt: 'Tailwind CSS Logo'
},
{
name: 'Node.js',
url:
'https://media.geeksforgeeks.org/wp-content/uploads/20240920112541/node.png',
alt: 'Node.js Logo'
},
{
name: 'JavaScript',
url:
'https://media.geeksforgeeks.org/wp-content/uploads/20240920112648/JS.png',
alt: 'JavaScript Logo'
},
{
name: 'HTML5',
url:
'https://media.geeksforgeeks.org/wp-content/uploads/20240920113634/HTML.png',
alt: 'HTML5 Logo'
},
{
name: 'CSS3',
url:
'https://media.geeksforgeeks.org/wp-content/uploads/20240920113755/CSS-3.png',
alt: 'CSS3 Logo'
},
{
name: 'GitHub',
url:
'https://media.geeksforgeeks.org/wp-content/uploads/20240920113738/Github.png',
alt: 'GitHub Logo'
},
{
name: 'Docker',
url:
'https://media.geeksforgeeks.org/wp-content/uploads/20240920113723/docker.png',
alt: 'Docker Logo'
},
{
name: 'AWS',
url:
'https://media.geeksforgeeks.org/wp-content/uploads/20240920113654/aws.png',
alt: 'AWS Logo'
},
{
name: 'MySQL',
url:
'https://media.geeksforgeeks.org/wp-content/uploads/20240920112616/MySQL.png',
alt: 'MySQL Logo'
},
];
return (
<div className="bg-gray-50 py-16">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h2 className="text-center text-3xl font-bold text-gray-800">
Our Technology Partners
</h2>
<p className="text-center text-lg text-gray-600 mt-4">
We work with the latest and most reliable technologies.
</p>
<div className="mt-12 grid grid-cols-2 gap-8 sm:grid-cols-3 lg:grid-cols-6">
{logos.map((logo, index) => (
<div key={index} className="flex justify-center hover:scale-105 transition-transform duration-300">
<Image
src={logo.url}
alt={logo.alt}
width={120}
height={80}
className="object-contain"
/>
</div>
))}
</div>
</div>
</div>
);
}