From ca688dd02addb9fdb78f525ba91cbad3a0d6e3fc Mon Sep 17 00:00:00 2001 From: development Date: Wed, 21 Jan 2026 11:13:02 +0000 Subject: [PATCH] Update src/components/Home.tsx --- src/components/Home.tsx | 292 +++++++++++++++++++++++++++++++++------- 1 file changed, 240 insertions(+), 52 deletions(-) diff --git a/src/components/Home.tsx b/src/components/Home.tsx index 698a2c8..d28813b 100644 --- a/src/components/Home.tsx +++ b/src/components/Home.tsx @@ -1,64 +1,252 @@ import React from 'react'; +import { ChevronRight, ArrowRight, Play, Star, Check, Globe, Users, Zap } from 'lucide-react'; -type BackgroundType = 'solid' | 'glass' | 'transparent'; -type BorderRadiusType = 'none' | 'small' | 'rounded' | 'large'; -type CardStyleType = 'minimal' | 'glass' | 'glass-elevated' | 'solid'; -type ButtonStyleType = 'solid' | 'glass' | 'outline'; -type TextAnimationType = 'none' | 'entrance-slide' | 'entrance-fade' | 'typing'; - -interface HomeProps { - defaultTextAnimation?: TextAnimationType; - borderRadius?: BorderRadiusType; - background?: BackgroundType; - cardStyle?: CardStyleType; - primaryButtonStyle?: ButtonStyleType; - secondaryButtonStyle?: ButtonStyleType; -} - -const Home: React.FC = ({ - defaultTextAnimation = "entrance-slide", borderRadius = "rounded", background = "glass", cardStyle = "glass-elevated", primaryButtonStyle = "solid", secondaryButtonStyle = "glass" -}) => { +const Home: React.FC = () => { return ( -
-
-
-

- Welcome to Webild Components -

-

- A modern component library built with React and Tailwind CSS -

-
- -
-
-

Modern Design

-

- Beautiful, responsive components with glass morphism effects -

+
+ {/* Header */} +
+
+
+
+ W +
+ Webild
-
-

TypeScript

-

- Fully typed components for better developer experience -

-
+ -
-

Customizable

-

- Flexible theming system with multiple style variants -

-
-
- -
-
-
+ + + {/* Hero Section */} +
+
+

+ Build Amazing + Web Experiences +

+

+ Create stunning websites and applications with our cutting-edge tools and components. + Fast, reliable, and beautiful. +

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

+ Why Choose Webild? +

+

+ Everything you need to build modern web applications +

+
+ +
+
+
+ +
+

Lightning Fast

+

Optimized performance with modern web technologies for blazing fast load times.

+
+ +
+
+ +
+

Global Reach

+

Deploy anywhere with our global CDN and edge computing capabilities.

+
+ +
+
+ +
+

Team Collaboration

+

Work together seamlessly with real-time collaboration tools.

+
+
+
+
+ + {/* Stats Section */} +
+
+
+
+
10k+
+
Happy Customers
+
+
+
50M+
+
Page Views
+
+
+
99.9%
+
Uptime
+
+
+
24/7
+
Support
+
+
+
+
+ + {/* Testimonials */} +
+
+
+

+ What Our Users Say +

+
+ +
+
+
+ {[...Array(5)].map((_, i) => ( + + ))} +
+

+ "Webild has transformed how we build web applications. The components are beautiful and the performance is outstanding." +

+
+
+
+
Sarah Johnson
+
Frontend Developer
+
+
+
+ +
+
+ {[...Array(5)].map((_, i) => ( + + ))} +
+

+ "The best web development platform I've used. Clean, fast, and incredibly easy to work with." +

+
+
+
+
Mike Chen
+
Tech Lead
+
+
+
+ +
+
+ {[...Array(5)].map((_, i) => ( + + ))} +
+

+ "Amazing support and documentation. Our team was up and running in no time." +

+
+
+
+
Emily Davis
+
Product Manager
+
+
+
+
+
+
+ + {/* CTA Section */} +
+
+

+ Ready to Get Started? +

+

+ Join thousands of developers building amazing web experiences +

+ +
+
+ + {/* Footer */} +
); };