Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5974c5f677 | |||
| ce4e0096a5 | |||
| a8561c86ce | |||
| edbabca3dc | |||
| b76d7a61f1 | |||
| e7ad4306a2 |
148
src/app/business-class-cars/page.tsx
Normal file
148
src/app/business-class-cars/page.tsx
Normal file
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="medium"
|
||||
background="floatingGradient"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Learning Hub", id: "/learning-hub" },
|
||||
{ name: "Business Class Cars", id: "/business-class-cars" },
|
||||
{ name: "Biznes Topish", id: "/#biznes-topish" },
|
||||
{ name: "Mening Biznes Profilim", id: "/profile" },
|
||||
{ name: "Yangi Biznes Qo'shish", id: "/register" },
|
||||
{ name: "Goals", id: "/goals" }
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/illustration-entrepreneur-conccept_53876-5536.jpg"
|
||||
logoAlt="Biznes-Hub Logo"
|
||||
brandName="Biznes-Hub"
|
||||
button={{
|
||||
text: "Get Started", href: "/register"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "canvas-reveal"
|
||||
}}
|
||||
title="Biznes-Klass Avtomobillari"
|
||||
description="Sizning korporativ sayohatlaringiz uchun eng yaxshi avtomobillarni tanlang. Konfor, uslub va ishonchlilik."
|
||||
buttons={[
|
||||
{
|
||||
text: "Sedanlarni Ko'rish", href: "#car-listings"
|
||||
},
|
||||
{
|
||||
text: "SUVlarni Ko'rish", href: "#car-listings"
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/view-front-modern-white-electric-car_114579-4029.jpg"
|
||||
imageAlt="Luxury business class car"
|
||||
mediaAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{ type: "text", text: "Executive Sedans" },
|
||||
{ type: "text", text: "Premium SUVs" },
|
||||
{ type: "text", text: "Professional Drivers" },
|
||||
{ type: "text", text: "Flexible Rentals" },
|
||||
{ type: "text", text: "Global Coverage" }
|
||||
]}
|
||||
marqueeSpeed={30}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="car-listings" data-section="car-listings">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "car-1", name: "Mercedes-Benz S-Class", price: "800 $/kun", imageSrc: "http://img.b2bpic.net/free-photo/view-luxury-car-front_23-2151125206.jpg", imageAlt: "Mercedes-Benz S-Class"
|
||||
},
|
||||
{
|
||||
id: "car-2", name: "BMW 7 Series", price: "750 $/kun", imageSrc: "http://img.b2bpic.net/free-photo/blue-sport-car-parking_114579-4672.jpg", imageAlt: "BMW 7 Series"
|
||||
},
|
||||
{
|
||||
id: "car-3", name: "Audi A8", price: "700 $/kun", imageSrc: "http://img.b2bpic.net/free-photo/view-modern-electric-car-front_114579-4040.jpg", imageAlt: "Audi A8"
|
||||
},
|
||||
{
|
||||
id: "car-4", name: "Tesla Model S", price: "650 $/kun", imageSrc: "http://img.b2bpic.net/free-photo/back-view-modern-car_114579-4026.jpg", imageAlt: "Tesla Model S"
|
||||
},
|
||||
{
|
||||
id: "car-5", name: "Range Rover Sport", price: "900 $/kun", imageSrc: "http://img.b2bpic.net/free-photo/view-white-modern-electric-car_114579-4039.jpg", imageAlt: "Range Rover Sport"
|
||||
},
|
||||
{
|
||||
id: "car-6", name: "Porsche Cayenne", price: "850 $/kun", imageSrc: "http://img.b2bpic.net/free-photo/view-electric-car-charging-process_114579-4033.jpg", imageAlt: "Porsche Cayenne"
|
||||
}
|
||||
]}
|
||||
title="Biznes Safarlari Uchun Avtomobillar"
|
||||
description="Sizning korporativ ehtiyojlaringizga mos keladigan yuqori klassdagi avtomobillar parki."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Nega Bizni Tanlaysiz?"
|
||||
description="Sizning biznes sayohatlaringiz uchun ishonchli, hashamatli va qulay xizmat."
|
||||
metrics={[
|
||||
{
|
||||
id: "metric-1", value: "500+", title: "Mijozlar", icon: Users,
|
||||
description: "500 dan ortiq mamnun korporativ mijozlar."
|
||||
},
|
||||
{
|
||||
id: "metric-2", value: "100%", title: "Konfor", icon: CheckCircle,
|
||||
description: "Sayohatlaringizda maksimal konfor va xavfsizlik."
|
||||
},
|
||||
{
|
||||
id: "metric-3", value: "24/7", title: "Qo'llab-quvvatlash", icon: Settings,
|
||||
description: "Istagan vaqtda yordam ko'rsatishga tayyorimiz."
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoSrc="http://img.b2bpic.net/free-vector/illustration-entrepreneur-conccept_53876-5536.jpg"
|
||||
logoAlt="Biznes-Hub Logo"
|
||||
logoText="Biznes-Hub"
|
||||
copyrightText="© 2024 Biznes-Hub. Barcha huquqlar himoyalangan."
|
||||
socialLinks={[
|
||||
{ icon: Facebook, href: "https://facebook.com/bizneshub", ariaLabel: "Facebook" },
|
||||
{ icon: Linkedin, href: "https://linkedin.com/bizneshub", ariaLabel: "LinkedIn" },
|
||||
{ icon: Twitter, href: "https://twitter.com/bizneshub", ariaLabel: "Twitter" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -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<number>(0);
|
||||
const [requiredCapital, setRequiredCapital] = useState<number>(0);
|
||||
const [currentIncome, setCurrentIncome] = useState<number>(0);
|
||||
const [remainingFunds, setRemainingFunds] = useState<number>(0);
|
||||
|
||||
useEffect(() => {
|
||||
setRemainingFunds(Math.max(0, financialGoal + requiredCapital - currentIncome));
|
||||
}, [financialGoal, requiredCapital, currentIncome]);
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="medium"
|
||||
background="floatingGradient"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="extrabold"
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="medium"
|
||||
background="floatingGradient"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Biznes Topish", id: "/#biznes-topish" },
|
||||
{ name: "Mening Biznes Profilim", id: "/profile" },
|
||||
{ name: "Yangi Biznes Qo'shish", id: "/register" },
|
||||
{ name: "Goals", id: "/goals" }
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Biznes Topish", id: "/#biznes-topish"},
|
||||
{
|
||||
name: "Mening Biznes Profilim", id: "/profile"},
|
||||
{
|
||||
name: "Yangi Biznes Qo'shish", id: "/register"},
|
||||
{
|
||||
name: "Goals", id: "/goals"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/illustration-entrepreneur-conccept_53876-5536.jpg"
|
||||
logoAlt="Biznes-Hub Logo"
|
||||
brandName="Biznes-Hub"
|
||||
button={{
|
||||
text: "Get Started", href: "/register"
|
||||
}}
|
||||
text: "Get Started", href: "/register"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="goals" data-section="goals">
|
||||
<MetricCardSeven
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "goal-1", value: "500,000 $", title: "Dream Home", items: [
|
||||
"Savings Needed: 400,000 $", "Current Income: 5,000 $ / month", "Remaining: 250,000 $"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "goal-2", value: "1,000,000 $", title: "Retirement Fund", items: [
|
||||
"Savings Needed: 800,000 $", "Current Income: 7,000 $ / month", "Remaining: 600,000 $"
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "goal-3", value: "200,000 $", title: "Startup Capital", items: [
|
||||
"Savings Needed: 150,000 $", "Current Income: 3,000 $ / month", "Remaining: 100,000 $"
|
||||
]
|
||||
}
|
||||
]}
|
||||
title="Financial Goals Tracker"
|
||||
description="Set your financial objectives, track your progress, and visualize your path to success."
|
||||
animationType="slide-up"
|
||||
/>
|
||||
<div id="goals-content" data-section="goals-content" className="min-h-screen py-20 flex items-center justify-center">
|
||||
<div className="bg-card p-8 rounded-lg shadow-xl max-w-lg w-full">
|
||||
<h1 className="text-4xl font-extrabold text-foreground mb-6 text-center">Biznes Maqsadlaringiz</h1>
|
||||
<p className="text-lg text-foreground/80 mb-8 text-center">Moliyaviy maqsadlaringizni kiriting va kerakli mablag'ni hisoblang.</p>
|
||||
|
||||
<div className="space-y-6">
|
||||
<div>
|
||||
<label htmlFor="financialGoal" className="block text-foreground text-sm font-semibold mb-2">Moliyaviy Maqsad (USD)</label>
|
||||
<input
|
||||
type="number"
|
||||
id="financialGoal"
|
||||
value={financialGoal}
|
||||
onChange={(e) => 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"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label htmlFor="requiredCapital" className="block text-foreground text-sm font-semibold mb-2">Talab Qilinadigan Kapital (USD)</label>
|
||||
<input
|
||||
type="number"
|
||||
id="requiredCapital"
|
||||
value={requiredCapital}
|
||||
onChange={(e) => 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"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<label htmlFor="currentIncome" className="block text-foreground text-sm font-semibold mb-2">Joriy Daromad (USD)</label>
|
||||
<input
|
||||
type="number"
|
||||
id="currentIncome"
|
||||
value={currentIncome}
|
||||
onChange={(e) => 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"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="pt-4">
|
||||
<h2 className="text-xl font-semibold text-foreground">Qolgan Mablag':</h2>
|
||||
<p className="text-3xl font-bold text-primary-cta mt-2">{remainingFunds.toLocaleString('en-US', { style: 'currency', currency: 'USD' })}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
@@ -74,13 +110,19 @@ export default function GoalsPage() {
|
||||
logoText="Biznes-Hub"
|
||||
copyrightText="© 2024 Biznes-Hub. Barcha huquqlar himoyalangan."
|
||||
socialLinks={[
|
||||
{ icon: Facebook, href: "https://facebook.com/bizneshub", ariaLabel: "Facebook" },
|
||||
{ icon: Linkedin, href: "https://linkedin.com/bizneshub", ariaLabel: "LinkedIn" },
|
||||
{ icon: Twitter, href: "https://twitter.com/bizneshub", ariaLabel: "Twitter" }
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "https://facebook.com/bizneshub", ariaLabel: "Facebook"},
|
||||
{
|
||||
icon: Linkedin,
|
||||
href: "https://linkedin.com/bizneshub", ariaLabel: "LinkedIn"},
|
||||
{
|
||||
icon: Twitter,
|
||||
href: "https://twitter.com/bizneshub", ariaLabel: "Twitter"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
156
src/app/learning-hub/page.tsx
Normal file
156
src/app/learning-hub/page.tsx
Normal file
@@ -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, Facebook, Linkedin, Twitter } from "lucide-react";
|
||||
|
||||
export default function LearningHubPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="medium"
|
||||
background="floatingGradient"
|
||||
cardStyle="solid"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Learning Hub", id: "/learning-hub" },
|
||||
{ name: "Business Class Cars", id: "/business-class-cars" },
|
||||
{ name: "Biznes Topish", id: "/#biznes-topish" },
|
||||
{ name: "Mening Biznes Profilim", id: "/profile" },
|
||||
{ name: "Yangi Biznes Qo'shish", id: "/register" },
|
||||
{ name: "Goals", id: "/goals" }
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/illustration-entrepreneur-conccept_53876-5536.jpg"
|
||||
logoAlt="Biznes-Hub Logo"
|
||||
brandName="Biznes-Hub"
|
||||
button={{
|
||||
text: "Get Started", href: "/register"
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "canvas-reveal"
|
||||
}}
|
||||
title="Tadbirkorlikka Sayohat"
|
||||
description="Biznes-Hub orqali tadbirkorlik ko'nikmalarini o'rganing, bilimingizni oshiring va muvaffaqiyatga erishing."
|
||||
buttons={[
|
||||
{
|
||||
text: "Kurslarni Ko'rish", href: "#learning-modules"
|
||||
},
|
||||
{
|
||||
text: "Mentorlar bilan Bog'lanish", href: "#testimonials"
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/diverse-college-students-working-campus_23-2149023060.jpg"
|
||||
imageAlt="Students learning and collaborating"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-vector/illustration-human-avatar-with-environment_53876-17430.jpg", alt: "Mentor 1" },
|
||||
{ src: "http://img.b2bpic.net/free-vector/20-insurance-solid-glyph-icon-presentation_1142-25697.jpg", alt: "Mentor 2" },
|
||||
{ src: "http://img.b2bpic.net/free-vector/20-business-elements-symbols-metaphors-flat-color-icon-presentation-vector-icons-illustration_1142-17134.jpg", alt: "Mentor 3" },
|
||||
]}
|
||||
avatarText="30+ ekspert mentorlar bilan"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="learning-modules" data-section="learning-modules">
|
||||
<FeatureCardTwentyFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
title="Keng Qamrovli O'quv Modullari"
|
||||
description="Biznes g'oyasidan tortib uni kengaytirishgacha, bizning o'quv dasturimiz tadbirkorlikning har bir jihatini qamrab oladi."
|
||||
features={[
|
||||
{
|
||||
id: "module-1", title: "Biznes Planlash Asoslari", author: "D. J. Miller", description: "Muvaffaqiyatli biznes rejasi tuzish sirlarini o'rganing.", tags: ["Start-up", "Strategiya"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/financial-charts-charts-display-global-business-trends_482257-125345.jpg"
|
||||
},
|
||||
{
|
||||
id: "module-2", title: "Marketing va Savdo Strategiyalari", author: "Sarah Smith", description: "Brendingizni qanday targ'ib qilish va sotuvlarni oshirishni bilib oling.", tags: ["Marketing", "Savdo"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/web-development-programmer-engineering-coding-website-design-developer-working-office-and-coding-software_482257-129618.jpg"
|
||||
},
|
||||
{
|
||||
id: "module-3", title: "Moliyaviy Boshqaruv", author: "A. K. Jones", description: "Moliyaviy barqarorlik va o'sish uchun samarali boshqaruv.", tags: ["Moliya", "Investitsiya"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-business-team-looking-financial-charts_482257-133989.jpg"
|
||||
},
|
||||
{
|
||||
id: "module-4", title: "Jamoa Tuzish va Liderlik", author: "Emily White", description: "Kuchli jamoa yaratish va samarali lider bo'lish.", tags: ["Jamoa", "Liderlik"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-office-workers-brainstorming-together_482257-136151.jpg"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTen
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Nima Uchun Bizni Tanlashadi?"
|
||||
description="Bizning dasturlarimiz bitiruvchilari o'z bizneslarini qanday kengaytirgani haqida eshiting."
|
||||
testimonials={[
|
||||
{
|
||||
id: "testimonial-1", title: "Biznesimni Yangi Darajaga Olib Chiqdim", quote: "Biznes-Hubning ta'lim resurslari yordamida men o'z g'oyamni muvaffaqiyatli biznesga aylantira oldim. Mentorlik dasturi ayniqsa qimmatli bo'ldi.", name: "Jasur Olimjonov", role: "Tech Start-up Asoschisi", imageSrc: "http://img.b2bpic.net/free-vector/illustration-human-avatar-with-environment_53876-17430.jpg"
|
||||
},
|
||||
{
|
||||
id: "testimonial-2", title: "Investitsiyalarni Jalb Qilishga Yordam Berdi", quote: "Men moliyaviy boshqaruv va investorlarni jalb qilish bo'yicha amaliy bilimlarni oldim, bu esa biznesimga katta sarmoya kiritishimga yordam berdi.", name: "Nigina Karimova", role: "Eco-Friendly Brand Egasi", imageSrc: "http://img.b2bpic.net/free-vector/illustration-human-avatar-with-environment_53876-17434.jpg"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitText
|
||||
faqsAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
sideTitle="Ko'p So'raladigan Savollar"
|
||||
sideDescription="Biznes-Hubning O'quv Markazi haqida siz bilishingiz kerak bo'lgan hamma narsa."
|
||||
faqs={[
|
||||
{
|
||||
id: "faq-1", title: "O'quv dasturlaringiz kimlar uchun?", content: "Bizning dasturlarimiz yangi boshlovchi tadbirkorlar, kichik biznes egalari va o'z biznesini kengaytirishni istaganlar uchun mo'ljallangan."
|
||||
},
|
||||
{
|
||||
id: "faq-2", title: "Mentorlik dasturiga qanday qo'shilish mumkin?", content: "Mentorlik dasturiga qo'shilish uchun avvalo ro'yxatdan o'tishingiz va bizning asosiy kurslarimizdan birini tugatishingiz kerak bo'ladi."
|
||||
},
|
||||
{
|
||||
id: "faq-3", title: "Kurslar narxi qancha?", content: "Kurs narxlari tanlangan dasturga qarab farq qiladi. Batafsil ma'lumotni 'Kurslar' sahifasida topishingiz mumkin."
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoSrc="http://img.b2bpic.net/free-vector/illustration-entrepreneur-conccept_53876-5536.jpg"
|
||||
logoAlt="Biznes-Hub Logo"
|
||||
logoText="Biznes-Hub"
|
||||
copyrightText="© 2024 Biznes-Hub. Barcha huquqlar himoyalangan."
|
||||
socialLinks={[
|
||||
{ icon: Facebook, href: "https://facebook.com/bizneshub", ariaLabel: "Facebook" },
|
||||
{ icon: Linkedin, href: "https://linkedin.com/bizneshub", ariaLabel: "LinkedIn" },
|
||||
{ icon: Twitter, href: "https://twitter.com/bizneshub", ariaLabel: "Twitter" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -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() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user