From d7c3578393faa88faadc1614c6ae0971695f13b1 Mon Sep 17 00:00:00 2001 From: development Date: Fri, 16 Jan 2026 12:52:50 +0000 Subject: [PATCH] Add src/components/HomePage.tsx --- src/components/HomePage.tsx | 73 +++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 src/components/HomePage.tsx diff --git a/src/components/HomePage.tsx b/src/components/HomePage.tsx new file mode 100644 index 0000000..d4af37e --- /dev/null +++ b/src/components/HomePage.tsx @@ -0,0 +1,73 @@ +import React from 'react'; +import { Play, Users, Trophy, Star } from 'lucide-react'; + +const HomePage = () => { + return ( +
+ {/* Header */} +
+
+
GameHub
+ + +
+
+ + {/* Hero Section */} +
+
+

+ Welcome to GameHub +

+

+ The ultimate gaming platform where players connect, compete, and conquer together. +

+ +
+
+ + {/* Features */} +
+
+

Why Choose GameHub?

+
+
+ +

Global Community

+

Connect with millions of players worldwide

+
+
+ +

Tournaments

+

Compete in epic tournaments and win prizes

+
+
+ +

Premium Experience

+

Enjoy ad-free gaming with exclusive content

+
+
+
+
+ + {/* Footer */} + +
+ ); +}; + +export default HomePage;