diff --git a/src/app/page.tsx b/src/app/page.tsx index c3b6fb0..a4e1b4f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,45 @@ 'use client'; -import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; +import { ThemeProvider } from '@/context/ThemeProvider'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; +import ContactForm from '@/components/form/ContactForm'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import { CreditCard, AlertCircle, CheckCircle2, Hexagon, House, MessageSquareText, Settings, CircleDollarSign, ArrowLeftRight, Send } from 'lucide-react'; + +const navItems = [ + { name: 'Home', id: '/' }, + { name: 'Features', id: '#features' }, + { name: 'Pricing', id: '#pricing' }, + { name: 'Contact', id: '#contact' }, +]; + +const footerColumns = [ + { + title: 'Product', + items: [ + { label: 'Features', href: '#features' }, + { label: 'Pricing', href: '#pricing' }, + { label: 'Security', href: '#' }, + ], + }, + { + title: 'Company', + items: [ + { label: 'About', href: '#' }, + { label: 'Blog', href: '#' }, + { label: 'Careers', href: '#' }, + ], + }, + { + title: 'Legal', + items: [ + { label: 'Privacy', href: '#' }, + { label: 'Terms', href: '#' }, + { label: 'Contact', href: '#contact' }, + ], + }, +]; export default function Home() { return ( @@ -11,36 +49,187 @@ export default function Home() { borderRadius="rounded" contentWidth="medium" sizing="medium" - background="aurora" + background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" - headingFontWeight="bold" + headingFontWeight="semibold" > -
-
-

Welcome to Webild

-

Explore our payment solutions and community

-
- - Payment Methods - - - Community - + +
+ +
+ +
+
+
+

Payment Method Integration

+

Support multiple payment methods with seamless integration and automatic order confirmation.

+
+ +
+ {/* iDEAL Card */} +
+
+ +
+

iDEAL Payments

+

Popular in the Netherlands and Belgium. Direct bank transfers with real-time confirmation.

+
    +
  • ✓ Instant verification
  • +
  • ✓ Lower fees
  • +
  • ✓ High conversion
  • +
+
+ + {/* PayPal Card */} +
+
+ +
+

PayPal Integration

+

Global coverage with buyer protection and flexible payment options.

+
    +
  • ✓ Global reach
  • +
  • ✓ Buyer protection
  • +
  • ✓ Recurring payments
  • +
+
+ + {/* Mastercard Card */} +
+
+ +
+

Mastercard Processing

+

Secure credit card processing with advanced fraud detection.

+
    +
  • ✓ PCI DSS compliant
  • +
  • ✓ 3D Secure ready
  • +
  • ✓ Fraud prevention
  • +
+
-
+ + +
+
+
+

Order Confirmation System

+

Automatic order confirmations with real-time status updates and customer notifications.

+
+ +
+
+
+
+ +
+
+

Instant Payment Confirmation

+

Customers receive immediate confirmation emails upon successful payment across all payment methods.

+
+
+
+ +
+
+
+ +
+
+

Real-Time Order Status Updates

+

Customers can track their order status from payment initiation through delivery with webhook-based notifications.

+
+
+
+ +
+
+
+ +
+
+

Secure Order Data Management

+

All order information is encrypted and stored securely with audit trails for compliance.

+
+
+
+ +
+
+
+ +
+
+

Multi-Language Support

+

Order confirmations are automatically sent in the customer's preferred language.

+
+
+
+
+
+
+ +
+ +
+ + ); -} \ No newline at end of file +}