From b76d7a61f1dcd0c1e82b69a2fbcb95681d033a96 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 1 Jun 2026 05:16:29 +0000 Subject: [PATCH 1/4] Add src/app/business-class-cars/page.tsx --- src/app/business-class-cars/page.tsx | 148 +++++++++++++++++++++++++++ 1 file changed, 148 insertions(+) create mode 100644 src/app/business-class-cars/page.tsx diff --git a/src/app/business-class-cars/page.tsx b/src/app/business-class-cars/page.tsx new file mode 100644 index 0000000..5e37d23 --- /dev/null +++ b/src/app/business-class-cars/page.tsx @@ -0,0 +1,148 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Car, CheckCircle, Facebook, Linkedin, Settings, Twitter, Users } from "lucide-react"; + +export default function BusinessClassCarsPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From edbabca3dc0748df79ab58bcec9dbb1d3d52f35c Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 1 Jun 2026 05:16:30 +0000 Subject: [PATCH 2/4] Update src/app/goals/page.tsx --- src/app/goals/page.tsx | 138 +++++++++++++++++++++++++++-------------- 1 file changed, 90 insertions(+), 48 deletions(-) diff --git a/src/app/goals/page.tsx b/src/app/goals/page.tsx index f522934..10e0731 100644 --- a/src/app/goals/page.tsx +++ b/src/app/goals/page.tsx @@ -1,70 +1,106 @@ "use client"; +import { useState, useEffect } from 'react'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; import FooterCard from '@/components/sections/footer/FooterCard'; -import { Facebook, Linkedin, Twitter } from "lucide-react"; +import { Facebook, Linkedin, Twitter } from 'lucide-react'; export default function GoalsPage() { + const [financialGoal, setFinancialGoal] = useState(0); + const [requiredCapital, setRequiredCapital] = useState(0); + const [currentIncome, setCurrentIncome] = useState(0); + const [remainingFunds, setRemainingFunds] = useState(0); + + useEffect(() => { + setRemainingFunds(Math.max(0, financialGoal + requiredCapital - currentIncome)); + }, [financialGoal, requiredCapital, currentIncome]); + return ( -
- +
+
+

Biznes Maqsadlaringiz

+

Moliyaviy maqsadlaringizni kiriting va kerakli mablag'ni hisoblang.

+ +
+
+ + setFinancialGoal(parseFloat(e.target.value) || 0)} + className="w-full p-3 border border-gray-300 rounded-md bg-background text-foreground focus:ring-2 focus:ring-primary-cta focus:border-transparent" + placeholder="Misol: 100000" + /> +
+ +
+ + setRequiredCapital(parseFloat(e.target.value) || 0)} + className="w-full p-3 border border-gray-300 rounded-md bg-background text-foreground focus:ring-2 focus:ring-primary-cta focus:border-transparent" + placeholder="Misol: 50000" + /> +
+ +
+ + setCurrentIncome(parseFloat(e.target.value) || 0)} + className="w-full p-3 border border-gray-300 rounded-md bg-background text-foreground focus:ring-2 focus:ring-primary-cta focus:border-transparent" + placeholder="Misol: 20000" + /> +
+ +
+

Qolgan Mablag':

+

{remainingFunds.toLocaleString('en-US', { style: 'currency', currency: 'USD' })}

+
+
+
); -} \ No newline at end of file +} -- 2.49.1 From a8561c86cee08d93636456b87bc770a39457236b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 1 Jun 2026 05:16:30 +0000 Subject: [PATCH 3/4] Add src/app/learning-hub/page.tsx --- src/app/learning-hub/page.tsx | 156 ++++++++++++++++++++++++++++++++++ 1 file changed, 156 insertions(+) create mode 100644 src/app/learning-hub/page.tsx diff --git a/src/app/learning-hub/page.tsx b/src/app/learning-hub/page.tsx new file mode 100644 index 0000000..970f898 --- /dev/null +++ b/src/app/learning-hub/page.tsx @@ -0,0 +1,156 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; +import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { BookOpen, Briefcase, GraduationCap, MessageSquare, Star, Users } from "lucide-react"; + +export default function LearningHubPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From ce4e0096a582b1d8990400c8f225af81a8e3a7ec Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 1 Jun 2026 05:16:30 +0000 Subject: [PATCH 4/4] Update src/app/page.tsx --- src/app/page.tsx | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index a217a7c..76d9747 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -100,23 +100,29 @@ export default function LandingPage() { useInvertedBackground={true} products={[ { - id: "product-1", brand: "Tech Innovations", name: "AI Driven Analytics Platform", price: "300,000 $", rating: 5, + id: "product-1", brand: "Tech Innovations", name: "AI Driven Analytics Platform (Cloud-based)", price: "300,000 $", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/light-bulb-ideas-creative-icon_53876-123904.jpg", imageAlt: "AI Analytics Platform"}, { - id: "product-2", brand: "Green Solutions", name: "Sustainable Energy Grid", price: "500,000 $", rating: 4, + id: "product-2", brand: "Green Solutions", name: "Affordable Solar Energy Grid for SMEs", price: "150,000 $", rating: 4, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/robot-with-solar-panel_1048-12083.jpg", imageAlt: "Sustainable Energy Grid"}, { - id: "product-3", brand: "Urban Future", name: "Smart City Mobility App", price: "250,000 $", rating: 5, + id: "product-3", brand: "Urban Future", name: "Smart City Mobility App with GPS & Payment", price: "250,000 $", rating: 5, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/woman-checking-covid-19-mobile-application_53876-165459.jpg", imageAlt: "Smart City Mobility App"}, { - id: "product-4", brand: "LogiPro", name: "AI Logistics Optimization", price: "400,000 $", rating: 4, + id: "product-4", brand: "LogiPro", name: "AI-Powered Logistics Optimization Software", price: "400,000 $", rating: 4, reviewCount: "70", imageSrc: "http://img.b2bpic.net/free-photo/person-using-ar-technology-perform-their-occupation_23-2151137492.jpg", imageAlt: "AI Logistics Optimization"}, { - id: "product-5", brand: "EduNext", name: "Advanced Tech Learning Platform", price: "350,000 $", rating: 5, + id: "product-5", brand: "EduNext", name: "Interactive Online Learning Platform for K-12", price: "120,000 $", rating: 5, reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/older-woman-college-student-interacting-with-professor-webinar-laptop-studying-library_482257-136324.jpg", imageAlt: "Advanced Tech Learning Platform"}, { - id: "product-6", brand: "BioWell", name: "Digital Health & Wellness Tracker", price: "280,000 $", rating: 4, + id: "product-6", brand: "BioWell", name: "Personalized Digital Health & Wellness Tracker", price: "280,000 $", rating: 4, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/agenda-calendar-appointment-graphic-concept_53876-125043.jpg", imageAlt: "Digital Health & Wellness Tracker"}, + { + id: "product-7", brand: "FoodieLink", name: "Local Food Delivery App with Small Business Focus", price: "80,000 $", rating: 4, + reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/close-up-plate-food_23-2149174697.jpg", imageAlt: "Food Delivery App"}, + { + id: "product-8", brand: "ArtisanCrafts", name: "E-commerce Platform for Local Artisans", price: "50,000 $", rating: 5, + reviewCount: "105", imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-pottery-crafts_23-2149646487.jpg", imageAlt: "Artisan E-commerce Platform"} ]} title="Biznes G'oyalarni Kashing Qiling" description="Investitsiya izlayotgan innovatsion biznes g'oyalarini ko'rib chiqing va kelajakdagi yutuqlarni qo'llab-quvvatlang." @@ -208,4 +214,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1