From 0a056956e2d67d73f0822d2ab12f0bc544b1f481 Mon Sep 17 00:00:00 2001 From: development Date: Wed, 21 Jan 2026 11:13:01 +0000 Subject: [PATCH 1/2] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 42a8d41..48d4b97 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "webild-components-2", "version": "0.1.0", "private": true, "scripts": { - "dev": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" + "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, "dependencies": { "@gsap/react": "^2.1.2", "@react-three/drei": "^10.7.7", "@react-three/fiber": "^9.4.0", "clsx": "^2.1.1", "cobe": "^0.6.5", "embla-carousel-auto-scroll": "^8.6.0", "embla-carousel-react": "^8.6.0", "gsap": "^3.13.0", "lenis": "^1.3.15", "lucide-react": "^0.555.0", "motion-number": "^1.0.0", "react": "^18.2.0", "react-dom": "^18.2.0", "react-fast-marquee": "^1.6.5", "react-scripts": "5.0.1", "tailwind-merge": "^3.4.0", "three": "^0.181.2", "web-vitals": "^2.1.4" -- 2.49.1 From ca688dd02addb9fdb78f525ba91cbad3a0d6e3fc Mon Sep 17 00:00:00 2001 From: development Date: Wed, 21 Jan 2026 11:13:02 +0000 Subject: [PATCH 2/2] 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 */} +
); }; -- 2.49.1