Update src/app/page.tsx

This commit is contained in:
2026-05-02 22:18:13 +00:00
parent 30668738b9
commit 741ae7b4a9

View File

@@ -1,5 +1,6 @@
"use client";
import React from "react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
@@ -57,7 +58,6 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitDualMedia
background={{ variant: "sparkles-gradient" }}
title={lang === 'en' ? "Build Your Professional Business Website in Seconds" : lang === 'ar' ? "أنشئ موقع عملك الاحترافي في ثوانٍ" : "בנה את אתר העסק המקצועי שלך בשניות"}
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 מאפשרת לעסק שלך להשיק דף נחיתה אוטומטי בעל המרה גבוהה. פשוט הזן את פרטי העסק שלך, והבינה המלאכותית שלנו תעשה את העבודה הקשה עבורך."}
tag={lang === 'en' ? "AI-Powered Website Creator" : lang === 'ar' ? "منشئ مواقع مدعوم بالذكاء الاصطناعي" : "בונה אתרים מבוסס בינה מלאכותית"}
@@ -78,11 +78,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
features={[
{ title: lang === 'en' ? "Instant Generation" : "توليد فوري", description: "...", imageSrc: "..." },
{ title: lang === 'en' ? "WhatsApp Ready" : "جاهز للواتساب", description: "...", imageSrc: "..." },
{ title: lang === 'en' ? "Custom URLs" : "روابط مخصصة", description: "...", imageSrc: "..." },
]}
features={[]}
title={lang === 'en' ? "Why Choose WebZap?" : "لماذا تختار WebZap؟"}
description={lang === 'en' ? "Experience the fastest way to get online with intelligent, automated tools." : "جرب أسرع طريقة للتواجد عبر الإنترنت."}
/>
@@ -93,11 +89,7 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
plans={[
{ id: "basic", price: "$0", name: "Free", features: [], buttons: [{ text: "Get", href: "#" }] },
{ id: "pro", price: "$29", name: "Pro", features: [], buttons: [{ text: "Upgrade", href: "#" }] },
{ id: "business", price: "$99", name: "Business", features: [], buttons: [{ text: "Upgrade", href: "#" }] },
]}
plans={[]}
title={lang === 'en' ? "Simple Pricing" : "أسعار بسيطة"}
description="..."
/>
@@ -164,11 +156,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: lang === 'en' ? "About" : "حول", href: "#" }, { label: lang === 'en' ? "Features" : "المميزات", href: "#features" }] },
{ items: [{ label: lang === 'en' ? "Pricing" : "الأسعار", href: "#pricing" }, { label: lang === 'en' ? "Contact" : "اتصل بنا", href: "#contact" }] },
{ items: [{ label: lang === 'en' ? "Privacy" : "الخصوصية", href: "#" }, { label: lang === 'en' ? "Terms" : "الشروط", href: "#" }] },
]}
columns={[]}
logoText="WebZap"
/>
</div>