Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| eb6679a020 | |||
| 90959ca287 | |||
| 9f846b08d7 | |||
| 57a01e0136 | |||
| f25b32d409 |
@@ -1,81 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="small"
|
||||
sizing="largeSmall"
|
||||
background="fluid"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Smart Tuition Pro"
|
||||
navItems={[
|
||||
{ name: "Features", id: "/features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact" style={{ paddingTop: "5rem" }}>
|
||||
<ContactText
|
||||
text="Ready to transform your institute with Smart Tuition Pro? Get in touch with our team and let's create something amazing together."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Start Your Free Trial", href: "https://smarttuitionpro.com/trial" },
|
||||
{ text: "Schedule a Demo", href: "https://smarttuitionpro.com/demo" },
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
copyrightText="© 2025 Smart Tuition Pro | All rights reserved"
|
||||
columns={[
|
||||
{
|
||||
title: "Product", items: [
|
||||
{ label: "Features", href: "/features" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Security", href: "#" },
|
||||
{ label: "Roadmap", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Blog", href: "https://smarttuitionpro.com/blog" },
|
||||
{ label: "Careers", href: "https://smarttuitionpro.com/careers" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "https://smarttuitionpro.com/privacy" },
|
||||
{ label: "Terms of Service", href: "https://smarttuitionpro.com/terms" },
|
||||
{ label: "Data Protection", href: "https://smarttuitionpro.com/gdpr" },
|
||||
{ label: "Cookie Policy", href: "https://smarttuitionpro.com/cookies" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -1,138 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
import { BarChart3, Bell, CheckCircle, Clock, CreditCard, DollarSign, FileCheck, FileText, Award, Zap, TrendingUp } from 'lucide-react';
|
||||
|
||||
export default function FeaturesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="soft"
|
||||
contentWidth="small"
|
||||
sizing="largeSmall"
|
||||
background="fluid"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Smart Tuition Pro"
|
||||
navItems={[
|
||||
{ name: "Features", id: "/features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
title="Explore Our Comprehensive Features"
|
||||
description="Discover all the powerful tools and capabilities built into Smart Tuition Pro to streamline your institute management"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Features"
|
||||
tagIcon={CheckCircle}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Start Your Free Trial", href: "https://smarttuitionpro.com/trial" },
|
||||
{ text: "View Demo", href: "https://smarttuitionpro.com/demo" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-modern-bright-dashboard-interface-for--1773131822223-ba9b7474.png?_wi=2"
|
||||
imageAlt="Smart Tuition Pro features dashboard"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTen
|
||||
title="Everything You Need to Manage Your Institute"
|
||||
description="Our comprehensive platform serves administrators, teachers, students, and parents with intuitive, role-based dashboards and real-time insights."
|
||||
tag="Complete Solution"
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Attendance Tracking & Analytics", description: "Mark attendance in real-time with instant automated notifications to parents. Track patterns, generate reports, and identify attendance issues before they become problems.", media: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/an-illustration-showing-automated-notifi-1773131821170-b22c650e.png?_wi=2"
|
||||
},
|
||||
items: [
|
||||
{ icon: CheckCircle, text: "Real-time attendance marking" },
|
||||
{ icon: Bell, text: "Automated parent notifications" },
|
||||
{ icon: BarChart3, text: "Attendance analytics & reports" },
|
||||
{ icon: Clock, text: "Historical tracking" },
|
||||
],
|
||||
reverse: false,
|
||||
},
|
||||
{
|
||||
id: "2", title: "Online Assessments & Testing", description: "Create and deploy online assessments with instant grading, detailed performance analytics, and customizable question formats. Track student progress and identify learning gaps.", media: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/an-online-assessment-and-testing-interfa-1773131821770-81f7ec34.png?_wi=2"
|
||||
},
|
||||
items: [
|
||||
{ icon: FileText, text: "Flexible assessment creation" },
|
||||
{ icon: Zap, text: "Instant automated grading" },
|
||||
{ icon: TrendingUp, text: "Performance analytics" },
|
||||
{ icon: Award, text: "Detailed result reports" },
|
||||
],
|
||||
reverse: true,
|
||||
},
|
||||
{
|
||||
id: "3", title: "Comprehensive Fee Management", description: "Streamline fee collection with integrated UPI payment gateway, automated invoicing, and transparent payment tracking. Reduce manual follow-ups with automated reminders.", media: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-comprehensive-fee-management-dashboard-1773131821739-fdd9d4d5.png?_wi=2"
|
||||
},
|
||||
items: [
|
||||
{ icon: CreditCard, text: "UPI payment integration" },
|
||||
{ icon: FileCheck, text: "Automated invoicing" },
|
||||
{ icon: Bell, text: "Payment reminders" },
|
||||
{ icon: DollarSign, text: "Complete audit trail" },
|
||||
],
|
||||
reverse: false,
|
||||
},
|
||||
]}
|
||||
textboxLayout="default"
|
||||
animationType="blur-reveal"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
copyrightText="© 2025 Smart Tuition Pro | All rights reserved"
|
||||
columns={[
|
||||
{
|
||||
title: "Product", items: [
|
||||
{ label: "Features", href: "/features" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Security", href: "#" },
|
||||
{ label: "Roadmap", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Blog", href: "https://smarttuitionpro.com/blog" },
|
||||
{ label: "Careers", href: "https://smarttuitionpro.com/careers" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "https://smarttuitionpro.com/privacy" },
|
||||
{ label: "Terms of Service", href: "https://smarttuitionpro.com/terms" },
|
||||
{ label: "Data Protection", href: "https://smarttuitionpro.com/gdpr" },
|
||||
{ label: "Cookie Policy", href: "https://smarttuitionpro.com/cookies" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
1418
src/app/layout.tsx
1418
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -34,7 +34,7 @@ export default function LandingPage() {
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -49,14 +49,11 @@ export default function LandingPage() {
|
||||
]}
|
||||
slides={[
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-modern-bright-dashboard-interface-for--1773131822223-ba9b7474.png?_wi=1", imageAlt: "Administrator dashboard with student analytics and attendance tracking"
|
||||
},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-modern-bright-dashboard-interface-for--1773131822223-ba9b7474.png", imageAlt: "Administrator dashboard with student analytics and attendance tracking"},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-teacher-s-interface-for-marking-attend-1773131821713-04defe3f.png", imageAlt: "Teacher interface for attendance marking and student progress"
|
||||
},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-teacher-s-interface-for-marking-attend-1773131821713-04defe3f.png", imageAlt: "Teacher interface for attendance marking and student progress"},
|
||||
{
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-parent-and-student-portal-showing-grad-1773131821088-b2ba03d7.png", imageAlt: "Student and parent portal showing grades and schedule"
|
||||
},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-parent-and-student-portal-showing-grad-1773131821088-b2ba03d7.png", imageAlt: "Student and parent portal showing grades and schedule"},
|
||||
]}
|
||||
autoplayDelay={5000}
|
||||
showDimOverlay={true}
|
||||
@@ -88,8 +85,7 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Attendance Tracking & Analytics", description: "Mark attendance in real-time with instant automated notifications to parents. Track patterns, generate reports, and identify attendance issues before they become problems.", media: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/an-illustration-showing-automated-notifi-1773131821170-b22c650e.png?_wi=1"
|
||||
},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/an-illustration-showing-automated-notifi-1773131821170-b22c650e.png"},
|
||||
items: [
|
||||
{ icon: CheckCircle, text: "Real-time attendance marking" },
|
||||
{ icon: Bell, text: "Automated parent notifications" },
|
||||
@@ -100,8 +96,7 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: "2", title: "Online Assessments & Testing", description: "Create and deploy online assessments with instant grading, detailed performance analytics, and customizable question formats. Track student progress and identify learning gaps.", media: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/an-online-assessment-and-testing-interfa-1773131821770-81f7ec34.png?_wi=1"
|
||||
},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/an-online-assessment-and-testing-interfa-1773131821770-81f7ec34.png"},
|
||||
items: [
|
||||
{ icon: FileText, text: "Flexible assessment creation" },
|
||||
{ icon: Zap, text: "Instant automated grading" },
|
||||
@@ -112,8 +107,7 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: "3", title: "Comprehensive Fee Management", description: "Streamline fee collection with integrated UPI payment gateway, automated invoicing, and transparent payment tracking. Reduce manual follow-ups with automated reminders.", media: {
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-comprehensive-fee-management-dashboard-1773131821739-fdd9d4d5.png?_wi=1"
|
||||
},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-comprehensive-fee-management-dashboard-1773131821739-fdd9d4d5.png"},
|
||||
items: [
|
||||
{ icon: CreditCard, text: "UPI payment integration" },
|
||||
{ icon: FileCheck, text: "Automated invoicing" },
|
||||
@@ -169,8 +163,7 @@ export default function LandingPage() {
|
||||
{ text: "Learn More", href: "#pricing" },
|
||||
],
|
||||
features: [
|
||||
"Up to 50 students", "Basic attendance tracking", "Simple assessment creation", "Email support", "Monthly reports"
|
||||
],
|
||||
"Up to 50 students", "Basic attendance tracking", "Simple assessment creation", "Email support", "Monthly reports"],
|
||||
},
|
||||
{
|
||||
id: "professional", badge: "Professional", badgeIcon: Sparkles,
|
||||
@@ -179,8 +172,7 @@ export default function LandingPage() {
|
||||
{ text: "Learn More", href: "#pricing" },
|
||||
],
|
||||
features: [
|
||||
"Up to 250 students", "Advanced attendance analytics", "Full assessment suite", "UPI fee collection", "Priority email & chat support", "Custom branding", "Parent notifications"
|
||||
],
|
||||
"Up to 250 students", "Advanced attendance analytics", "Full assessment suite", "UPI fee collection", "Priority email & chat support", "Custom branding", "Parent notifications"],
|
||||
},
|
||||
{
|
||||
id: "enterprise", badge: "Enterprise", badgeIcon: Sparkles,
|
||||
@@ -189,8 +181,7 @@ export default function LandingPage() {
|
||||
{ text: "Schedule Demo", href: "https://smarttuitionpro.com/demo" },
|
||||
],
|
||||
features: [
|
||||
"Unlimited students & classes", "Multi-branch management", "Advanced API access", "Custom integrations", "Dedicated account manager", "24/7 priority support", "On-premise deployment option", "Advanced security features"
|
||||
],
|
||||
"Unlimited students & classes", "Multi-branch management", "Advanced API access", "Custom integrations", "Dedicated account manager", "24/7 priority support", "On-premise deployment option", "Advanced security features"],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -207,20 +198,16 @@ export default function LandingPage() {
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Rajesh Sharma", handle: "@rjsharmacoaching", testimonial: "Smart Tuition Pro eliminated our attendance spreadsheets completely. Parent notifications are automatic, and we've reduced no-show rates by 40%. The fee collection integration has saved us countless hours.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-professional-headshot-of-a-female-inst-1773131822139-2a8ebdbf.png"
|
||||
},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-professional-headshot-of-a-female-inst-1773131822139-2a8ebdbf.png"},
|
||||
{
|
||||
id: "2", name: "Priya Patel", handle: "@teacheronline", testimonial: "As a teacher, I love how easy it is to create assessments and track student progress. The automated grading saves me hours every week, and I can focus on actual teaching and mentoring.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-professional-headshot-of-a-male-teache-1773131820445-54bd539a.png"
|
||||
},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-professional-headshot-of-a-male-teache-1773131820445-54bd539a.png"},
|
||||
{
|
||||
id: "3", name: "Anjali Verma", handle: "@parentcare2024", testimonial: "Finally, I can see my son's grades and attendance in real-time. The fee status is always clear, and I get notifications about everything important. As a parent, this peace of mind is invaluable.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-professional-headshot-of-a-diverse-fem-1773131821020-ef19fec5.png"
|
||||
},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-professional-headshot-of-a-diverse-fem-1773131821020-ef19fec5.png"},
|
||||
{
|
||||
id: "4", name: "Vikram Desai", handle: "@desaiachieverscenter", testimonial: "Implementing Smart Tuition Pro was the best decision for our institute. Student retention improved, administrative overhead dropped dramatically, and parents are significantly more engaged.", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-professional-headshot-of-a-male-instit-1773131820483-432d33b5.png"
|
||||
},
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-professional-headshot-of-a-male-instit-1773131820483-432d33b5.png"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -239,23 +226,17 @@ export default function LandingPage() {
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "How does the attendance tracking work?", content: "Teachers mark attendance through the intuitive mobile or web interface. The system automatically sends SMS/email notifications to parents if a student is absent. Administrators can view real-time attendance dashboards and generate comprehensive reports for analysis."
|
||||
},
|
||||
id: "1", title: "How does the attendance tracking work?", content: "Teachers mark attendance through the intuitive mobile or web interface. The system automatically sends SMS/email notifications to parents if a student is absent. Administrators can view real-time attendance dashboards and generate comprehensive reports for analysis."},
|
||||
{
|
||||
id: "2", title: "Is UPI payment integration mandatory?", content: "No, UPI is optional but highly recommended. We support multiple payment methods including bank transfers, checks, and offline modes. However, UPI integration provides instant payment confirmation and automated reconciliation, reducing manual follow-ups significantly."
|
||||
},
|
||||
id: "2", title: "Is UPI payment integration mandatory?", content: "No, UPI is optional but highly recommended. We support multiple payment methods including bank transfers, checks, and offline modes. However, UPI integration provides instant payment confirmation and automated reconciliation, reducing manual follow-ups significantly."},
|
||||
{
|
||||
id: "3", title: "Can we customize the assessments?", content: "Absolutely! Teachers can create custom assessments with multiple question types: multiple choice, short answer, descriptive, and numeric. You can set time limits, randomize questions, and configure auto-grading or manual review as needed."
|
||||
},
|
||||
id: "3", title: "Can we customize the assessments?", content: "Absolutely! Teachers can create custom assessments with multiple question types: multiple choice, short answer, descriptive, and numeric. You can set time limits, randomize questions, and configure auto-grading or manual review as needed."},
|
||||
{
|
||||
id: "4", title: "How secure is student data?", content: "Data security is our top priority. We use enterprise-grade encryption, secure cloud infrastructure (AWS/GCP), role-based access controls, and regular security audits. We comply with data protection regulations and never share student information with third parties."
|
||||
},
|
||||
id: "4", title: "How secure is student data?", content: "Data security is our top priority. We use enterprise-grade encryption, secure cloud infrastructure (AWS/GCP), role-based access controls, and regular security audits. We comply with data protection regulations and never share student information with third parties."},
|
||||
{
|
||||
id: "5", title: "What support is available during setup?", content: "We provide comprehensive onboarding support. Your plan includes data migration assistance, staff training sessions (recorded and live), setup documentation, and a dedicated support contact. Enterprise plans include a dedicated account manager."
|
||||
},
|
||||
id: "5", title: "What support is available during setup?", content: "We provide comprehensive onboarding support. Your plan includes data migration assistance, staff training sessions (recorded and live), setup documentation, and a dedicated support contact. Enterprise plans include a dedicated account manager."},
|
||||
{
|
||||
id: "6", title: "Can we migrate from our current system?", content: "Yes, we handle complete data migration. Our team can import student records, class structures, and historical data. We work with your current system provider to ensure smooth transition with minimal disruption."
|
||||
},
|
||||
id: "6", title: "Can we migrate from our current system?", content: "Yes, we handle complete data migration. Our team can import student records, class structures, and historical data. We work with your current system provider to ensure smooth transition with minimal disruption."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -277,7 +258,7 @@ export default function LandingPage() {
|
||||
{ label: "About", href: "#about" },
|
||||
{ label: "Blog", href: "https://smarttuitionpro.com/blog" },
|
||||
{ label: "Careers", href: "https://smarttuitionpro.com/careers" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user