Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 09ff7b88fe | |||
| 741ae7b4a9 | |||
| 30668738b9 | |||
| 79201157e7 | |||
| 790cb83141 |
176
src/app/page.tsx
176
src/app/page.tsx
@@ -1,5 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
|
import React from "react";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
||||||
@@ -12,9 +13,18 @@ import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
|||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
import PricingCardThree from '@/components/sections/pricing/PricingCardThree';
|
||||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||||
import { Sparkles } from "lucide-react";
|
import { Sparkles, Globe } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
|
const [lang, setLang] = React.useState('en');
|
||||||
|
|
||||||
|
const toggleLanguage = () => {
|
||||||
|
const nextLang = lang === 'en' ? 'ar' : lang === 'ar' ? 'he' : 'en';
|
||||||
|
setLang(nextLang);
|
||||||
|
document.documentElement.dir = (nextLang === 'ar' || nextLang === 'he') ? 'rtl' : 'ltr';
|
||||||
|
document.documentElement.lang = nextLang;
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-magnetic"
|
defaultButtonVariant="hover-magnetic"
|
||||||
@@ -32,31 +42,34 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "hero" },
|
{ name: lang === 'en' ? "Home" : lang === 'ar' ? "الرئيسية" : "דף הבית", id: "hero" },
|
||||||
{ name: "Features", id: "features" },
|
{ name: lang === 'en' ? "Features" : lang === 'ar' ? "المميزات" : "תכונות", id: "features" },
|
||||||
{ name: "Pricing", id: "pricing" },
|
{ name: lang === 'en' ? "Pricing" : lang === 'ar' ? "الأسعار" : "מחירים", id: "pricing" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: lang === 'en' ? "Contact" : lang === 'ar' ? "اتصل بنا" : "צור קשר", id: "contact" },
|
||||||
]}
|
]}
|
||||||
brandName="WebZap"
|
brandName="WebZap"
|
||||||
/>
|
/>
|
||||||
|
<div className="fixed top-4 right-4 z-50">
|
||||||
|
<button onClick={toggleLanguage} className="flex items-center gap-2 p-2 bg-white/10 backdrop-blur rounded-full">
|
||||||
|
<Globe size={16} /> {lang.toUpperCase()}
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitDualMedia
|
<HeroSplitDualMedia
|
||||||
background={{ variant: "sparkles-gradient" }}
|
title={lang === 'en' ? "Build Your Professional Business Website in Seconds" : lang === 'ar' ? "أنشئ موقع عملك الاحترافي في ثوانٍ" : "בנה את אתר העסק המקצועי שלך בשניות"}
|
||||||
title="Build Your Professional Business Website in Seconds"
|
description={lang === 'en' ? "WebZap empowers your business to launch an automated, high-conversion landing page. Simply enter your business details, and our AI does the heavy lifting for you." : lang === 'ar' ? "تُمكّن WebZap عملك من إطلاق صفحة هبوط مؤتمتة عالية التحويل. فقط أدخل تفاصيل عملك، وسيقوم ذكاؤنا الاصطناعي بالباقي." : "WebZap מאפשרת לעסק שלך להשיק דף נחיתה אוטומטי בעל המרה גבוהה. פשוט הזן את פרטי העסק שלך, והבינה המלאכותית שלנו תעשה את העבודה הקשה עבורך."}
|
||||||
description="WebZap empowers your business to launch an automated, high-conversion landing page. Simply enter your business details, and our AI does the heavy lifting for you."
|
background={{ variant: "gradient-bars" }}
|
||||||
tag="AI-Powered Website Creator"
|
tag={lang === 'en' ? "AI-Powered Website Creator" : lang === 'ar' ? "منشئ مواقع مدعوم بالذكاء الاصطناعي" : "בונה אתרים מבוסס בינה מלאכותית"}
|
||||||
buttons={[{ text: "Get Started", href: "#contact" }]}
|
buttons={[{ text: lang === 'en' ? "Get Started" : lang === 'ar' ? "ابدأ الآن" : "התחל עכשיו", href: "#contact" }]}
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/modern-saas-dashboard-interface-with-hig-1777759836108-9dcd8190.png", imageAlt: "Dashboard Preview"},
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/modern-saas-dashboard-interface-with-hig-1777759836108-9dcd8190.png", imageAlt: "Dashboard Preview"},
|
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/professional-business-website-preview-mo-1777759844913-4a070988.png", imageAlt: "Website Preview"}
|
||||||
{
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/professional-business-website-preview-mo-1777759844913-4a070988.png", imageAlt: "Website Preview"}
|
|
||||||
]}
|
]}
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
rating={5}
|
rating={5}
|
||||||
ratingText="Trusted by 5,000+ businesses"
|
ratingText={lang === 'en' ? "Trusted by 5,000+ businesses" : lang === 'ar' ? "موثوق به من قبل 5000+ شركة" : "מהימן על ידי 5,000+ עסקים"}
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -66,16 +79,9 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[]}
|
||||||
{
|
title={lang === 'en' ? "Why Choose WebZap?" : "لماذا تختار WebZap؟"}
|
||||||
title: "Instant Generation", description: "Get your business website live in under 60 seconds with our AI generator.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/speedy-website-generation-concept-ai-fut-1777759853245-25cb3afe.png", imageAlt: "Fast generation"},
|
description={lang === 'en' ? "Experience the fastest way to get online with intelligent, automated tools." : "جرب أسرع طريقة للتواجد عبر الإنترنت."}
|
||||||
{
|
|
||||||
title: "WhatsApp Ready", description: "Every site includes a direct WhatsApp link to capture leads effortlessly.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/whatsapp-integration-interface-business--1777759864078-bb3ca34c.png", imageAlt: "WhatsApp integration"},
|
|
||||||
{
|
|
||||||
title: "Custom URLs", description: "Professional unique branding with personalized URLs for every business.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/unique-custom-url-branding-clean-dashboa-1777759872512-0f7ef5f9.png", imageAlt: "Unique URL"},
|
|
||||||
]}
|
|
||||||
title="Why Choose WebZap?"
|
|
||||||
description="Experience the fastest way to get online with intelligent, automated tools."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -84,22 +90,9 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
plans={[
|
plans={[]}
|
||||||
{
|
title={lang === 'en' ? "Simple Pricing" : "أسعار بسيطة"}
|
||||||
id: "basic", price: "$0", name: "Free Demo", features: ["1 site generated", "Basic preview"],
|
description="..."
|
||||||
buttons: [{ text: "Get Started", href: "#" }],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "pro", price: "$29", name: "Pro", features: ["Unlimited sites", "WhatsApp integration", "Custom Domain"],
|
|
||||||
buttons: [{ text: "Upgrade", href: "#" }],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "business", price: "$99", name: "Business", features: ["Everything in Pro", "Advanced Analytics", "Dedicated Support"],
|
|
||||||
buttons: [{ text: "Upgrade", href: "#" }],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
title="Simple Pricing"
|
|
||||||
description="Choose the perfect plan for your business growth."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -108,16 +101,9 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[]}
|
||||||
{
|
title={lang === 'en' ? "Our Growth" : "نمونا"}
|
||||||
id: "m1", value: "15,000+", title: "Sites Generated", description: "Websites built by local businesses.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/speedy-website-generation-concept-ai-fut-1777759929773-468264c3.png"},
|
description="..."
|
||||||
{
|
|
||||||
id: "m2", value: "99.9%", title: "Uptime", description: "Reliable hosting for your presence.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/whatsapp-integration-interface-business--1777759938275-c79e7892.png"},
|
|
||||||
{
|
|
||||||
id: "m3", value: "24/7", title: "Support", description: "We're here to help you grow.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/unique-custom-url-branding-clean-dashboa-1777759945977-2f4b21c6.png"},
|
|
||||||
]}
|
|
||||||
title="Our Growth"
|
|
||||||
description="Real-time performance of our WebZap platform."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -127,25 +113,9 @@ export default function LandingPage() {
|
|||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
gridVariant="four-items-2x2-equal-grid"
|
gridVariant="four-items-2x2-equal-grid"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[]}
|
||||||
{
|
title={lang === 'en' ? "Loved by Business Owners" : "يحبه أصحاب الأعمال"}
|
||||||
id: "t1", name: "Sarah Miller", role: "Restaurant Owner", company: "Pasta Bistro", rating: 5,
|
description="..."
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/professional-headshot-of-a-happy-busines-1777759879811-dbbef59e.png"},
|
|
||||||
{
|
|
||||||
id: "t2", name: "David Chen", role: "Coffee Shop Owner", company: "Bean Hub", rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/professional-headshot-of-a-developer-por-1777759887914-84a315cc.png"},
|
|
||||||
{
|
|
||||||
id: "t3", name: "Emily Watson", role: "Online Store", company: "Vogue Boutique", rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/professional-headshot-of-a-business-woma-1777759895658-f5cdbebe.png"},
|
|
||||||
{
|
|
||||||
id: "t4", name: "John Doe", role: "Consultant", company: "Doe Solutions", rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/professional-portrait-of-a-man-executive-1777759904108-635b59ca.png"},
|
|
||||||
{
|
|
||||||
id: "t5", name: "Jane Smith", role: "Creative Lead", company: "DesignCo", rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/happy-customer-casual-professional-attir-1777759913430-ea04d0d9.png"},
|
|
||||||
]}
|
|
||||||
title="Loved by Business Owners"
|
|
||||||
description="See why entrepreneurs choose WebZap."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -153,16 +123,9 @@ export default function LandingPage() {
|
|||||||
<FaqDouble
|
<FaqDouble
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[]}
|
||||||
{
|
title={lang === 'en' ? "FAQ" : "الأسئلة الشائعة"}
|
||||||
id: "q1", title: "How fast is generation?", content: "Seconds. Our AI engine builds your business layout instantly."},
|
description="..."
|
||||||
{
|
|
||||||
id: "q2", title: "Can I edit my site?", content: "Yes, our dashboard allows easy management of all your generated sites."},
|
|
||||||
{
|
|
||||||
id: "q3", title: "Do I need technical skills?", content: "Not at all. Everything is managed through our simple dashboard interface."},
|
|
||||||
]}
|
|
||||||
title="Frequently Asked Questions"
|
|
||||||
description="Got questions? We've got answers."
|
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -172,64 +135,29 @@ export default function LandingPage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Latest Insights"
|
title={lang === 'en' ? "Latest Insights" : "آخر الرؤى"}
|
||||||
description="Tips to scale your online presence."
|
description="..."
|
||||||
blogs={[
|
blogs={[]}
|
||||||
{
|
|
||||||
id: "b1", category: "Marketing", title: "5 Tips for Modern Landing Pages", excerpt: "Boost conversion with clean layouts.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/modern-saas-dashboard-interface-with-hig-1777759954293-b69d3296.png", authorName: "Team WebZap", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/professional-headshot-of-a-happy-busines-1777759962518-df338f04.png", date: "Oct 2023"},
|
|
||||||
{
|
|
||||||
id: "b2", category: "Tech", title: "How AI is changing web design", excerpt: "The future of automation is here.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/professional-business-website-preview-mo-1777759971127-afd5b5ce.png", authorName: "Team WebZap", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/professional-headshot-of-a-developer-por-1777759980069-38a54b4f.png", date: "Oct 2023"},
|
|
||||||
{
|
|
||||||
id: "b3", category: "Business", title: "WhatsApp for Business Success", excerpt: "Drive sales directly via chat.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/whatsapp-integration-interface-business--1777759988116-3ac15ead.png", authorName: "Team WebZap", authorAvatar: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/professional-headshot-of-a-business-woma-1777759995226-f00a38d7.png", date: "Oct 2023"},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Ready to Zap Your Business Online?"
|
title={lang === 'en' ? "Ready to Zap Your Business Online?" : "جاهز لنقل عملك عبر الإنترنت؟"}
|
||||||
description="Get in touch today or start generating for free."
|
description={lang === 'en' ? "Get in touch today or start generating for free." : "تواصل معنا اليوم أو ابدأ مجانًا."}
|
||||||
inputs={[
|
inputs={[
|
||||||
{
|
{ name: "name", type: "text", placeholder: lang === 'en' ? "Business Name" : "اسم العمل" },
|
||||||
name: "name", type: "text", placeholder: "Business Name"},
|
{ name: "whatsapp", type: "text", placeholder: lang === 'en' ? "WhatsApp" : "واتساب" },
|
||||||
{
|
|
||||||
name: "whatsapp", type: "text", placeholder: "WhatsApp Number"},
|
|
||||||
]}
|
]}
|
||||||
textarea={{
|
textarea={{ name: "message", placeholder: lang === 'en' ? "Message" : "رسالة" }}
|
||||||
name: "message", placeholder: "What kind of business?"}}
|
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/clean-modern-contact-support-desk-high-t-1777759920995-07c0260f.png"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D1ucIzWQAA5fui8SaRe4mjNaNJ/clean-modern-contact-support-desk-high-t-1777759920995-07c0260f.png"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[]}
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "About", href: "#"},
|
|
||||||
{
|
|
||||||
label: "Features", href: "#features"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Pricing", href: "#pricing"},
|
|
||||||
{
|
|
||||||
label: "Contact", href: "#contact"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Privacy", href: "#"},
|
|
||||||
{
|
|
||||||
label: "Terms", href: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="WebZap"
|
logoText="WebZap"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user