Merge version_1 into main #3
@@ -2,218 +2,18 @@
|
||||
|
||||
import Link from "next/link";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import FeatureCardTwentyFive from "@/components/sections/feature/FeatureCardTwentyFive";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||
import {
|
||||
BookOpen,
|
||||
BookMarked,
|
||||
Zap,
|
||||
Building2,
|
||||
Users,
|
||||
TrendingUp,
|
||||
Award,
|
||||
Heart,
|
||||
} from "lucide-react";
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import { Trophy, Users, TrendingUp, Award, BookOpen, Heart, BookMarked, Zap, Building2, Mail, HelpCircle, Star } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Academics", id: "academics" },
|
||||
{ name: "Admissions", id: "admissions" },
|
||||
];
|
||||
|
||||
const academicFeatures = [
|
||||
{
|
||||
title: "State Curriculum",
|
||||
description: "Following national standards with enhanced content delivery",
|
||||
icon: BookMarked,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/different-books-arrangement-still-life_23-2149891303.jpg?_wi=2",
|
||||
imageAlt: "Curriculum materials",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/online-library-concept_1284-7424.jpg?_wi=2",
|
||||
imageAlt: "Digital learning",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Extracurricular Activities",
|
||||
description: "Sports, arts, clubs, and leadership development opportunities",
|
||||
icon: Zap,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/close-up-woman-preparing-run_23-2148381939.jpg?_wi=2",
|
||||
imageAlt: "Sports activities",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/children-doing-chemical-experiment-teacher-watching_259150-60307.jpg?_wi=2",
|
||||
imageAlt: "Creative activities",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Modern Infrastructure",
|
||||
description: "State-of-the-art facilities including labs, library, and sports complex",
|
||||
icon: Building2,
|
||||
mediaItems: [
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/coffee-shop-with-blurred-effect_23-2148164718.jpg?_wi=2",
|
||||
imageAlt: "School cafeteria",
|
||||
},
|
||||
{
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/beautiful-girl-picking-literature_23-2147678841.jpg?_wi=2",
|
||||
imageAlt: "School library",
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
const metrics = [
|
||||
{
|
||||
id: "1",
|
||||
value: "2500",
|
||||
title: "Students",
|
||||
description: "From kindergarten through grade 11",
|
||||
icon: Users,
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
value: "95",
|
||||
title: "percent",
|
||||
description: "University admission rate for graduates",
|
||||
icon: TrendingUp,
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
value: "25",
|
||||
title: "years",
|
||||
description: "Of educational excellence and tradition",
|
||||
icon: Award,
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
value: "120",
|
||||
title: "faculty",
|
||||
description: "Highly qualified and dedicated educators",
|
||||
icon: BookOpen,
|
||||
},
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Academics",
|
||||
href: "academics",
|
||||
},
|
||||
{
|
||||
label: "Faculty",
|
||||
href: "#faculty",
|
||||
},
|
||||
{
|
||||
label: "Infrastructure",
|
||||
href: "#infrastructure",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Admissions",
|
||||
href: "admissions",
|
||||
},
|
||||
{
|
||||
label: "Tuition",
|
||||
href: "#tuition",
|
||||
},
|
||||
{
|
||||
label: "Application",
|
||||
href: "#apply",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Student Portal",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Parent Portal",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Email Directory",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Staff Login",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Terms of Use",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "License & Certificates",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Sitemap",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Phone: +998 (75) 223-45-67",
|
||||
href: "tel:+998752234567",
|
||||
},
|
||||
{
|
||||
label: "Email: info@karshi-school.uz",
|
||||
href: "mailto:info@karshi-school.uz",
|
||||
},
|
||||
{
|
||||
label: "Address: Karshi, Kashkadarya Region",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Follow us on social media",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -221,11 +21,11 @@ export default function AboutPage() {
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="grid"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="light"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
@@ -233,17 +33,53 @@ export default function AboutPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Academics", id: "academics" },
|
||||
{ name: "Admissions", id: "admissions" },
|
||||
{ name: "Academics", id: "/academics" },
|
||||
{ name: "Admissions", id: "/admissions" },
|
||||
]}
|
||||
button={{
|
||||
text: "Apply Now",
|
||||
href: "/admissions",
|
||||
text: "Apply Now", href: "/admissions"
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCarouselLogo
|
||||
logoText="Karshi School"
|
||||
description="Nurturing excellence in education through innovation, integrity, and inclusive learning. Building tomorrow's leaders today."
|
||||
buttons={[
|
||||
{ text: "Apply Now", href: "/admissions" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
]}
|
||||
slides={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/schoolgirls-laughing-class_1098-3931.jpg", imageAlt: "happy students classroom learning" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/schoolgirl-with-notebook-her-hands-sunset-background-school-goes-school_169016-59085.jpg", imageAlt: "school building exterior architecture" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-graduation-certificate_23-2148928764.jpg", imageAlt: "students celebrating school achievements" }
|
||||
]}
|
||||
autoplayDelay={4000}
|
||||
showDimOverlay={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
title="School in Numbers"
|
||||
description="Achievements and statistics that reflect our commitment to educational excellence"
|
||||
tag="Our Impact"
|
||||
tagIcon={Trophy}
|
||||
metrics={[
|
||||
{ id: "1", value: "2500", title: "Students", description: "From kindergarten through grade 11", icon: Users },
|
||||
{ id: "2", value: "95", title: "percent", description: "University admission rate for graduates", icon: TrendingUp },
|
||||
{ id: "3", value: "25", title: "years", description: "Of educational excellence and tradition", icon: Award },
|
||||
{ id: "4", value: "120", title: "faculty", description: "Highly qualified and dedicated educators", icon: BookOpen }
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
tag="Our Mission"
|
||||
@@ -251,8 +87,8 @@ export default function AboutPage() {
|
||||
description="Dr. Akbar Khaitov"
|
||||
subdescription="School Principal & Founder"
|
||||
icon={Heart}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-female-employee-standing-with-crossed-arms-looking-confident-wearing-white-shirt-standing-office_141793-21248.jpg?_wi=2"
|
||||
imageAlt="School Principal"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-smiling-female-employee-standing-with-crossed-arms-looking-confident-wearing-white-shirt-standing-office_141793-21248.jpg"
|
||||
imageAlt="principal school leader professional"
|
||||
mediaAnimation="slide-up"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
@@ -264,29 +100,161 @@ export default function AboutPage() {
|
||||
description="Comprehensive curriculum combining state standards with innovative supplementary programs"
|
||||
tag="Education"
|
||||
tagIcon={BookOpen}
|
||||
features={academicFeatures}
|
||||
features={[
|
||||
{
|
||||
title: "State Curriculum", description: "Following national standards with enhanced content delivery", icon: BookMarked,
|
||||
mediaItems: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/different-books-arrangement-still-life_23-2149891303.jpg", imageAlt: "curriculum materials books learning" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-vector/online-library-concept_1284-7424.jpg", imageAlt: "online learning digital education" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Extracurricular Activities", description: "Sports, arts, clubs, and leadership development opportunities", icon: Zap,
|
||||
mediaItems: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-preparing-run_23-2148381939.jpg", imageAlt: "sports activities school gymnasium" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/children-doing-chemical-experiment-teacher-watching_259150-60307.jpg", imageAlt: "school clubs activities arts" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Modern Infrastructure", description: "State-of-the-art facilities including labs, library, and sports complex", icon: Building2,
|
||||
mediaItems: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/coffee-shop-with-blurred-effect_23-2148164718.jpg", imageAlt: "school cafeteria dining area" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-picking-literature_23-2147678841.jpg", imageAlt: "school library reading area" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
title="School in Numbers"
|
||||
description="Achievements and statistics that reflect our commitment to educational excellence"
|
||||
tag="Our Impact"
|
||||
tagIcon={Award}
|
||||
metrics={metrics}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
title="Parent & Student Testimonials"
|
||||
description="Hear from families who trust us with their children's education"
|
||||
tag="Success Stories"
|
||||
tagIcon={Star}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Fatima Rakhimova", role: "Parent", testimonial: "My daughter has grown not just academically but also in confidence and character. The teachers genuinely care about each student's development.", imageSrc: "http://img.b2bpic.net/free-photo/happy-ethnic-executive-woman-looking-camera_1098-20037.jpg", imageAlt: "parent professional headshot portrait"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Mirali Turayev", role: "Parent", testimonial: "Excellent quality education combined with traditional values. We are very satisfied with our son's progress and the school's transparent communication.", imageSrc: "http://img.b2bpic.net/free-photo/browneyed-stylish-brunet-bearded-man-white-shirt-checkered-jacket-smiles-looks-into-camera-orange-background_197531-29376.jpg", imageAlt: "professional man headshot portrait"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Gulnora Abdullayeva", role: "Parent & Educator", testimonial: "The school provides a safe, nurturing environment where children can explore their talents. The curriculum is comprehensive and well-balanced.", imageSrc: "http://img.b2bpic.net/free-photo/family-having-fun-couch_23-2147800080.jpg", imageAlt: "professional woman confident portrait"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Timur Karimov", role: "Parent", testimonial: "Outstanding infrastructure and dedicated faculty. My child's university admission is a testament to the quality education provided here.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-mother-daughter-kitchen_1170-2652.jpg", imageAlt: "professional man confident portrait"
|
||||
},
|
||||
{
|
||||
id: "5", name: "Zarifa Hoshimova", role: "Parent", testimonial: "The school respects our cultural heritage while preparing students for a global future. Highly recommended for quality education.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-businesswoman_329181-11722.jpg", imageAlt: "young parent portrait smiling"
|
||||
},
|
||||
{
|
||||
id: "6", name: "Bakhrom Shodmonov", role: "Parent", testimonial: "Professional administration, passionate teachers, and excellent facilities. Best investment in my child's future.", imageSrc: "http://img.b2bpic.net/free-photo/successful-young-businessman-with-his-arms-crossed-standing-front-building_23-2148176205.jpg", imageAlt: "professional man portrait confident"
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
title="Frequently Asked Questions"
|
||||
description="Find answers to common questions about admissions, academics, and school life"
|
||||
tag="Help & Support"
|
||||
tagIcon={HelpCircle}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "What are the admission requirements?", content: "Admission requires completion of an application form, academic records from previous school, entrance assessment, and parent interview. Detailed requirements are available on our Admissions page."
|
||||
},
|
||||
{
|
||||
id: "2", title: "What is the tuition fee structure?", content: "Tuition fees vary by grade level and program. We offer transparent pricing with options for monthly, quarterly, or annual payment. Payment plans and scholarships are available for qualified students."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Do you offer transportation?", content: "Yes, we provide school transportation with multiple routes covering Karshi city. Transportation fees are separate from tuition and can be paid through our portal."
|
||||
},
|
||||
{
|
||||
id: "4", title: "What extracurricular activities are available?", content: "We offer sports (football, basketball, volleyball), arts (music, visual arts), clubs (debate, science, technology), and leadership programs. Most activities are included in tuition."
|
||||
},
|
||||
{
|
||||
id: "5", title: "How can parents access student grades?", content: "Parents can access real-time grades through our online portal using login credentials provided at enrollment. Grades are updated regularly, and detailed progress reports are sent each term."
|
||||
},
|
||||
{
|
||||
id: "6", title: "What is your university admission rate?", content: "Our graduates achieve a 95% university admission rate to leading national and international institutions. Our college counseling team supports each student's university preparation journey."
|
||||
}
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="smooth"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
tag="Get in Touch"
|
||||
tagIcon={Mail}
|
||||
title="Ready to Join Karshi School?"
|
||||
description="Start your child's journey toward academic excellence. Our admissions team is ready to answer your questions and guide you through the enrollment process."
|
||||
buttons={[
|
||||
{ text: "Apply Online", href: "/admissions" },
|
||||
{ text: "Schedule Visit", href: "/contact" }
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis logoText="Karshi School" columns={footerColumns} />
|
||||
<FooterLogoEmphasis
|
||||
logoText="Karshi School"
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Academics", href: "/academics" },
|
||||
{ label: "Faculty", href: "/about#faculty" },
|
||||
{ label: "Infrastructure", href: "/about#infrastructure" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Admissions", href: "/admissions" },
|
||||
{ label: "Tuition", href: "/admissions#tuition" },
|
||||
{ label: "Application", href: "/admissions#apply" },
|
||||
{ label: "Contact", href: "/contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Student Portal", href: "#" },
|
||||
{ label: "Parent Portal", href: "#" },
|
||||
{ label: "Email Directory", href: "#" },
|
||||
{ label: "Staff Login", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Use", href: "#" },
|
||||
{ label: "License & Certificates", href: "#" },
|
||||
{ label: "Sitemap", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Phone: +998 (75) 223-45-67", href: "tel:+998752234567" },
|
||||
{ label: "Email: info@karshi-school.uz", href: "mailto:info@karshi-school.uz" },
|
||||
{ label: "Address: Karshi, Kashkadarya Region", href: "#" },
|
||||
{ label: "Follow us on social media", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -32,7 +32,8 @@ export default function ContactPage() {
|
||||
{ name: "Admissions", id: "/admissions" },
|
||||
]}
|
||||
button={{
|
||||
text: "Apply Now", href: "/admissions"}}
|
||||
text: "Apply Now", href: "/admissions"
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
@@ -45,12 +46,15 @@ export default function ContactPage() {
|
||||
description="Have questions about admissions, academics, or school life? Our dedicated team is here to help. Reach out to us through any of the channels below or fill out the contact form to get started."
|
||||
buttons={[
|
||||
{
|
||||
text: "Send Message", href: "mailto:info@karshi-school.uz"},
|
||||
text: "Send Message", href: "mailto:info@karshi-school.uz"
|
||||
},
|
||||
{
|
||||
text: "Call Us", href: "tel:+998752234567"},
|
||||
text: "Call Us", href: "tel:+998752234567"
|
||||
},
|
||||
]}
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
variant: "plain"
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
@@ -63,17 +67,23 @@ export default function ContactPage() {
|
||||
tagIcon={HelpCircle}
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "How do I submit an application?", content: "You can submit your application online through our portal or in person at our admissions office. Visit our Admissions page for detailed instructions and required documents."},
|
||||
id: "1", title: "How do I submit an application?", content: "You can submit your application online through our portal or in person at our admissions office. Visit our Admissions page for detailed instructions and required documents."
|
||||
},
|
||||
{
|
||||
id: "2", title: "What is the response time for inquiries?", content: "We typically respond to all inquiries within 24-48 business hours. You can also visit our campus in person during office hours for immediate assistance."},
|
||||
id: "2", title: "What is the response time for inquiries?", content: "We typically respond to all inquiries within 24-48 business hours. You can also visit our campus in person during office hours for immediate assistance."
|
||||
},
|
||||
{
|
||||
id: "3", title: "Can I schedule a campus tour?", content: "Absolutely! Campus tours are available by appointment. Please contact our admissions office or fill out a tour request form to schedule your visit."},
|
||||
id: "3", title: "Can I schedule a campus tour?", content: "Absolutely! Campus tours are available by appointment. Please contact our admissions office or fill out a tour request form to schedule your visit."
|
||||
},
|
||||
{
|
||||
id: "4", title: "What are your office hours?", content: "Our admissions office is open Monday-Friday, 8:00 AM - 5:00 PM. We are closed on weekends and public holidays. For urgent matters, please call our emergency line."},
|
||||
id: "4", title: "What are your office hours?", content: "Our admissions office is open Monday-Friday, 8:00 AM - 5:00 PM. We are closed on weekends and public holidays. For urgent matters, please call our emergency line."
|
||||
},
|
||||
{
|
||||
id: "5", title: "Do you offer financial aid or scholarships?", content: "Yes, we offer merit-based scholarships and financial assistance programs. Contact our admissions team to learn more about eligibility and application procedures."},
|
||||
id: "5", title: "Do you offer financial aid or scholarships?", content: "Yes, we offer merit-based scholarships and financial assistance programs. Contact our admissions team to learn more about eligibility and application procedures."
|
||||
},
|
||||
{
|
||||
id: "6", title: "How can I speak with someone directly?", content: "You can call us at +998 (75) 223-45-67 or email info@karshi-school.uz. Our staff is happy to answer any questions you may have."},
|
||||
id: "6", title: "How can I speak with someone directly?", content: "You can call us at +998 (75) 223-45-67 or email info@karshi-school.uz. Our staff is happy to answer any questions you may have."
|
||||
},
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
|
||||
Reference in New Issue
Block a user