import React from ‘react’;

export default function App() {
const scrollToSection = (id) => {
const element = document.getElementById(id);
if (element) {
element.scrollIntoView({ behavior: ‘smooth’ });
}
};

return (

{/* Navigation */}

5 APPS.SHOP

  • scrollToSection(‘about’)} className=”hover:text-yellow-300 transition”> About
  • scrollToSection(‘games’)} className=”hover:text-yellow-300 transition”> Games
  • scrollToSection(‘reviews’)} className=”hover:text-yellow-300 transition”> Reviews

Get Now

  {/* Hero Section */}
  <section className="pt-24 bg-gradient-to-r from-teal-500 to-orange-500 text-center py-20 px-6">
    <h1 className="text-4xl md:text-5xl font-extrabold mb-4">Top Games & Apps, Delivered Fast</h1>
    <p className="text-lg md:text-xl mb-8 max-w-2xl mx-auto">
      Discover the latest games and apps with exclusive offers. No subscriptions, no trials – just instant access.
    </p>
    <a
      id="get-now"
      href="#games"
      className="inline-block bg-yellow-500 text-gray-900 px-8 py-3 rounded-full font-bold text-lg hover:bg-yellow-400 transition"
    >
      Get Now
    </a>
  </section>

  {/* About Section */}
  <section id="about" className="py-20 bg-gray-800 px-6">
    <div className="max-w-3xl mx-auto text-center">
      <h2 className="text-3xl font-bold mb-6 text-teal-400">About Us</h2>
      <p className="text-lg leading-relaxed">
        We are a platform dedicated to bringing you the best mobile and PC games with instant access. Our mission is to make downloading and playing your favorite games as easy and fast as possible.
      </p>
    </div>
  </section>

  {/* Games Section */}
  <section id="games" className="py-20 bg-gray-900 px-6">
    <div className="max-w-6xl mx-auto">
      <h2 className="text-3xl font-bold mb-10 text-center text-teal-400">Popular Games</h2>
      <div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6">
        {[
          { name: 'GTA 5', image: 'https://upload.wikimedia.org/wikipedia/en/a/a5/Grand_Theft_Auto_V.png ' },
          { name: 'FORTNITE MOBILE', image: 'https://placehold.co/100x100?text=Fortnite' },
          { name: 'MINECRAFT', image: ' https://placehold.co/100x100?text=Minecraft' },
          { name: 'POPPY PLAYTIME', image: ' https://placehold.co/100x100?text=Poppy' },
          { name: 'FIFA 22', image: ' https://placehold.co/100x100?text=FIFA' },
          { name: 'SPIDER MAN', image: ' https://placehold.co/100x100?text=Spider-Man' },
        ].map((game, index) => (
          <div
            key={index}
            className="bg-gray-800 p-5 rounded-lg shadow-lg hover:shadow-2xl transform transition hover:-translate-y-2"
          >
            <img
              src={game.image}
              alt={game.name}
              className="w-20 h-20 mx-auto rounded-lg mb-4"
            />
            <h3 className="text-xl font-semibold mb-2">{game.name}</h3>
            <p className="text-sm text-gray-400 mb-4">Platforms: 🖥📱</p>
            <a
              href="#get-now"
              className="block text-center bg-green-500 hover:bg-green-600 text-white py-2 px-4 rounded-full transition"
            >
              Install
            </a>
          </div>
        ))}
      </div>
    </div>
  </section>

  {/* Reviews Section */}
  <section id="reviews" className="py-20 bg-gray-800 px-6">
    <div className="max-w-5xl mx-auto">
      <h2 className="text-3xl font-bold mb-10 text-center text-teal-400">What Our Users Say</h2>
      <div className="grid grid-cols-1 md:grid-cols-3 gap-6">
        <div className="bg-gray-700 p-6 rounded-lg shadow-lg">
          <p className="italic mb-4">"Amazing service! Got my game in seconds. Highly recommended."</p>
          <strong className="text-teal-400">- Alex T.</strong>
        </div>
        <div className="bg-gray-700 p-6 rounded-lg shadow-lg">
          <p className="italic mb-4">"Fast and reliable. No issues at all. I'll be back for more!"</p>
          <strong className="text-teal-400">- Sarah M.</strong>
        </div>
        <div className="bg-gray-700 p-6 rounded-lg shadow-lg">
          <p className="italic mb-4">"Best site I've found for instant game access. No ads, no spam."</p>
          <strong className="text-teal-400">- John D.</strong>
        </div>
      </div>
    </div>
  </section>

  {/* Footer */}
  <footer className="bg-gray-800 py-6 text-center text-sm text-gray-400">
    &copy; 2025 5 APPS.SHOP. All rights reserved.
  </footer>
</div>

);
}

Leave a Reply

Your email address will not be published. Required fields are marked *