Merge version_2 into main #6
@@ -1,59 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Mulish } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import type { Metadata } from 'next';
|
||||
import { Outfit } from 'next/font/google';
|
||||
import '@/styles/globals.css';
|
||||
|
||||
const mulish = Mulish({
|
||||
variable: "--font-mulish",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
const outfit = Outfit({ subsets: ['latin'] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "EduManage Pro - Academy Management SaaS Platform",
|
||||
description: "Cloud-based multi-tenant academy management system with student management, attendance tracking, fee management, and comprehensive reporting. 7-day free trial available.",
|
||||
keywords: "academy management, education SaaS, student management system, attendance tracking, fee management, educational software, school management platform",
|
||||
metadataBase: new URL("https://edumanagepro.com"),
|
||||
alternates: {
|
||||
canonical: "https://edumanagepro.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "EduManage Pro - Unified Academy Management Platform",
|
||||
description: "Streamline your academy operations with EduManage Pro. Manage students, teachers, courses, attendance, and fees. Multi-tenant, secure, and scalable.",
|
||||
url: "https://edumanagepro.com",
|
||||
siteName: "EduManage Pro",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARruazOM20f4gaxWwHuwsvTwDU/a-modern-professional-academy-management-1772569000672-8082289d.png",
|
||||
alt: "EduManage Pro Dashboard",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "EduManage Pro - Academy Management System",
|
||||
description: "Cloud-based SaaS platform for managing educational institutions. Try free for 7 days.",
|
||||
images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARruazOM20f4gaxWwHuwsvTwDU/a-modern-professional-academy-management-1772569000672-8082289d.png"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
title: 'EduManage Pro - Academy Management Platform',
|
||||
description: 'Cloud-based SaaS solution for educational institutions. Manage students, teachers, courses, attendance, fees, and reports securely.',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<body className={`${mulish.variable} ${inter.variable} antialiased`}>
|
||||
<html lang="en">
|
||||
<body className={outfit.className}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
@@ -1425,4 +1388,4 @@ export default function RootLayout({
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -161,19 +161,19 @@ export default function HomePage() {
|
||||
plans={[
|
||||
{
|
||||
id: "starter", badge: "For Small Academies", badgeIcon: Zap,
|
||||
price: "$299/month", subtitle: "Perfect for growing institutions", features: [
|
||||
price: "$299/month", subtitle: "Recommended for growing institutions", features: [
|
||||
"Up to 100 students", "5 teacher accounts", "Basic attendance tracking", "Email support", "Monthly reports", "Single academy account"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "professional", badge: "Most Popular", badgeIcon: Zap,
|
||||
price: "$799/month", subtitle: "Ideal for established academies", features: [
|
||||
price: "$799/month", subtitle: "Recommended for established academies", features: [
|
||||
"Up to 500 students", "20 teacher accounts", "Advanced attendance system", "Priority support", "Real-time analytics", "Invoice generation", "Mobile app access", "Custom branding"
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "enterprise", badge: "For Large Institutions", badgeIcon: Zap,
|
||||
price: "Custom", subtitle: "Enterprise-grade solutions", features: [
|
||||
price: "Custom", subtitle: "Recommended for large multi-campus networks", features: [
|
||||
"Unlimited students", "Unlimited teachers", "Multi-campus support", "24/7 dedicated support", "Advanced security features", "API access", "Custom integrations", "Dedicated account manager"
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user