Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -103,7 +103,7 @@ export default function FeaturesPage() {
|
||||
"Manage multiple coaching branches from a single Super Admin dashboard. Each branch has independent student data, teachers, and classes while maintaining centralized control.",
|
||||
tag: "Enterprise",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/gradient-organizational-chart-infographic_23-2149014236.jpg",
|
||||
"http://img.b2bpic.net/free-vector/gradient-organizational-chart-infographic_23-2149014236.jpg?_wi=2",
|
||||
imageAlt: "Multi-Branch Management",
|
||||
},
|
||||
{
|
||||
@@ -113,7 +113,7 @@ export default function FeaturesPage() {
|
||||
"Generate unique QR codes for each student. Teachers scan codes using their phone camera to instantly mark attendance. Prevents duplicate entries and timestamps automatically.",
|
||||
tag: "Mobile-First",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/person-scanning-qr-code_23-2149321710.jpg",
|
||||
"http://img.b2bpic.net/free-photo/person-scanning-qr-code_23-2149321710.jpg?_wi=2",
|
||||
imageAlt: "QR Code Attendance",
|
||||
},
|
||||
{
|
||||
@@ -123,7 +123,7 @@ export default function FeaturesPage() {
|
||||
"Super Admin, Branch Admin, Teacher, and Student roles with granular permissions. Each user sees only their relevant data. Secure JWT-based authentication.",
|
||||
tag: "Security",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/protect-against-cyber-attacks-infographic_23-2148535732.jpg",
|
||||
"http://img.b2bpic.net/free-vector/protect-against-cyber-attacks-infographic_23-2148535732.jpg?_wi=2",
|
||||
imageAlt: "Role-Based Access",
|
||||
},
|
||||
{
|
||||
@@ -133,7 +133,7 @@ export default function FeaturesPage() {
|
||||
"Live attendance updates across all branches. Track present/absent status instantly. Get real-time notifications for absentees. Multi-user concurrent access.",
|
||||
tag: "Real-Time",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/businessman-suit-arriving-home-checking-if-stock-market-is-crashing_482257-29631.jpg",
|
||||
"http://img.b2bpic.net/free-photo/businessman-suit-arriving-home-checking-if-stock-market-is-crashing_482257-29631.jpg?_wi=2",
|
||||
imageAlt: "Real-Time Tracking",
|
||||
},
|
||||
{
|
||||
@@ -143,7 +143,7 @@ export default function FeaturesPage() {
|
||||
"Add, edit, and delete students with automatic unique ID generation. Store standard, board, branch information. Manage student QR codes centrally.",
|
||||
tag: "Administration",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/crop-woman-working-with-laptop-park_23-2147664339.jpg",
|
||||
"http://img.b2bpic.net/free-photo/crop-woman-working-with-laptop-park_23-2147664339.jpg?_wi=2",
|
||||
imageAlt: "Student Management",
|
||||
},
|
||||
{
|
||||
@@ -153,7 +153,7 @@ export default function FeaturesPage() {
|
||||
"Generate attendance reports by branch, class, date, or student. Calculate attendance percentages. Export to Excel/CSV. Visualize trends with charts and graphs.",
|
||||
tag: "Analytics",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/business-dashboard-element-set_23-2148356893.jpg",
|
||||
"http://img.b2bpic.net/free-vector/business-dashboard-element-set_23-2148356893.jpg?_wi=2",
|
||||
imageAlt: "Reports & Analytics",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -1,24 +1,58 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Manrope } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "AttendanceHub - Multi-Branch Coaching Centre Management",
|
||||
description: "Production-ready attendance management system for coaching centres. QR-based scanning, multi-branch support, role-based access, real-time analytics, and comprehensive reporting.",
|
||||
keywords: "attendance management, coaching centre software, QR code attendance, multi-branch management, student tracking, educational platform",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "AttendanceHub - Attendance Management Made Simple",
|
||||
description: "Manage multiple coaching branches, track attendance with QR codes, and access real-time analytics.",
|
||||
type: "website",
|
||||
siteName: "AttendanceHub",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/bucharest-romania-july-30th-2024-male-ceo-watching-olympic-games-stream_482257-123108.jpg",
|
||||
alt: "AttendanceHub Dashboard",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "AttendanceHub - Coaching Centre Management",
|
||||
description: "Modern attendance tracking and management for multi-branch coaching centres.",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/bucharest-romania-july-30th-2024-male-ceo-watching-olympic-games-stream_482257-123108.jpg",
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +61,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${manrope.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +75,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -100,7 +100,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Manage multiple coaching branches from a single Super Admin dashboard. Each branch has independent student data, teachers, and classes while maintaining centralized control.",
|
||||
tag: "Enterprise",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/gradient-organizational-chart-infographic_23-2149014236.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/gradient-organizational-chart-infographic_23-2149014236.jpg?_wi=1",
|
||||
imageAlt: "Multi-Branch Management",
|
||||
},
|
||||
{
|
||||
@@ -109,7 +109,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Generate unique QR codes for each student. Teachers scan codes using their phone camera to instantly mark attendance. Prevents duplicate entries and timestamps automatically.",
|
||||
tag: "Mobile-First",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-scanning-qr-code_23-2149321710.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-scanning-qr-code_23-2149321710.jpg?_wi=1",
|
||||
imageAlt: "QR Code Attendance",
|
||||
},
|
||||
{
|
||||
@@ -118,7 +118,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Super Admin, Branch Admin, Teacher, and Student roles with granular permissions. Each user sees only their relevant data. Secure JWT-based authentication.",
|
||||
tag: "Security",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/protect-against-cyber-attacks-infographic_23-2148535732.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/protect-against-cyber-attacks-infographic_23-2148535732.jpg?_wi=1",
|
||||
imageAlt: "Role-Based Access",
|
||||
},
|
||||
{
|
||||
@@ -127,7 +127,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Live attendance updates across all branches. Track present/absent status instantly. Get real-time notifications for absentees. Multi-user concurrent access.",
|
||||
tag: "Real-Time",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-suit-arriving-home-checking-if-stock-market-is-crashing_482257-29631.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-suit-arriving-home-checking-if-stock-market-is-crashing_482257-29631.jpg?_wi=1",
|
||||
imageAlt: "Real-Time Tracking",
|
||||
},
|
||||
{
|
||||
@@ -136,7 +136,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Add, edit, and delete students with automatic unique ID generation. Store standard, board, branch information. Manage student QR codes centrally.",
|
||||
tag: "Administration",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-working-with-laptop-park_23-2147664339.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/crop-woman-working-with-laptop-park_23-2147664339.jpg?_wi=1",
|
||||
imageAlt: "Student Management",
|
||||
},
|
||||
{
|
||||
@@ -145,7 +145,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Generate attendance reports by branch, class, date, or student. Calculate attendance percentages. Export to Excel/CSV. Visualize trends with charts and graphs.",
|
||||
tag: "Analytics",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/business-dashboard-element-set_23-2148356893.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/business-dashboard-element-set_23-2148356893.jpg?_wi=1",
|
||||
imageAlt: "Reports & Analytics",
|
||||
},
|
||||
]}
|
||||
@@ -292,7 +292,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"AttendanceHub has transformed how we manage attendance across our 8 branches. The QR scanning is incredibly fast, and the real-time reports save us hours every day. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-smiling_1187-3402.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-smiling_1187-3402.jpg?_wi=1",
|
||||
imageAlt: "Rajesh Kumar",
|
||||
},
|
||||
{
|
||||
@@ -302,7 +302,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"The system is so intuitive that our teachers needed minimal training. The mobile-first design is perfect for our staff. Support team is always responsive.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman-looking-camera_74855-4120.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman-looking-camera_74855-4120.jpg?_wi=1",
|
||||
imageAlt: "Priya Sharma",
|
||||
},
|
||||
{
|
||||
@@ -312,7 +312,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"As someone managing 15 branches, AttendanceHub's multi-branch support is a game-changer. The analytics help me make better decisions. ROI is excellent.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-adult-pressing-buzzer-button_23-2149586556.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-adult-pressing-buzzer-button_23-2149586556.jpg?_wi=1",
|
||||
imageAlt: "Arjun Patel",
|
||||
},
|
||||
{
|
||||
@@ -322,7 +322,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"Switched from manual attendance registers to AttendanceHub. No more data errors, no more time wasted. Our principal loves the detailed reports. Best investment!",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-woman-posing_23-2149429384.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-woman-posing_23-2149429384.jpg?_wi=1",
|
||||
imageAlt: "Meera Singh",
|
||||
},
|
||||
{
|
||||
@@ -332,7 +332,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"The QR code system eliminated duplicate attendance entries. Real-time sync across branches is flawless. Customer support is exceptional.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg?_wi=1",
|
||||
imageAlt: "Vikram Reddy",
|
||||
},
|
||||
{
|
||||
@@ -342,7 +342,7 @@ export default function HomePage() {
|
||||
testimonial:
|
||||
"Scalable, reliable, and cost-effective. AttendanceHub grows with our business. The API integration options are perfect for our custom workflows.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/joyful-business-woman-using-tablet-table_23-2148095762.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/joyful-business-woman-using-tablet-table_23-2148095762.jpg?_wi=1",
|
||||
imageAlt: "Divya Iyer",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -169,7 +169,7 @@ export default function PricingPage() {
|
||||
"AttendanceHub has transformed how we manage attendance across our 8 branches. The QR scanning is incredibly fast, and the real-time reports save us hours every day. Highly recommended!",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/man-smiling_1187-3402.jpg",
|
||||
"http://img.b2bpic.net/free-photo/man-smiling_1187-3402.jpg?_wi=2",
|
||||
imageAlt: "Rajesh Kumar",
|
||||
},
|
||||
{
|
||||
@@ -180,7 +180,7 @@ export default function PricingPage() {
|
||||
"The system is so intuitive that our teachers needed minimal training. The mobile-first design is perfect for our staff. Support team is always responsive.",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman-looking-camera_74855-4120.jpg",
|
||||
"http://img.b2bpic.net/free-photo/confident-middle-aged-businesswoman-looking-camera_74855-4120.jpg?_wi=2",
|
||||
imageAlt: "Priya Sharma",
|
||||
},
|
||||
{
|
||||
@@ -191,7 +191,7 @@ export default function PricingPage() {
|
||||
"As someone managing 15 branches, AttendanceHub's multi-branch support is a game-changer. The analytics help me make better decisions. ROI is excellent.",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/young-adult-pressing-buzzer-button_23-2149586556.jpg",
|
||||
"http://img.b2bpic.net/free-photo/young-adult-pressing-buzzer-button_23-2149586556.jpg?_wi=2",
|
||||
imageAlt: "Arjun Patel",
|
||||
},
|
||||
{
|
||||
@@ -202,7 +202,7 @@ export default function PricingPage() {
|
||||
"Switched from manual attendance registers to AttendanceHub. No more data errors, no more time wasted. Our principal loves the detailed reports. Best investment!",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/side-view-smiley-woman-posing_23-2149429384.jpg",
|
||||
"http://img.b2bpic.net/free-photo/side-view-smiley-woman-posing_23-2149429384.jpg?_wi=2",
|
||||
imageAlt: "Meera Singh",
|
||||
},
|
||||
{
|
||||
@@ -213,7 +213,7 @@ export default function PricingPage() {
|
||||
"The QR code system eliminated duplicate attendance entries. Real-time sync across branches is flawless. Customer support is exceptional.",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg",
|
||||
"http://img.b2bpic.net/free-photo/confident-entrepreneur-satisfied-with-own-success_1163-5474.jpg?_wi=2",
|
||||
imageAlt: "Vikram Reddy",
|
||||
},
|
||||
{
|
||||
@@ -224,7 +224,7 @@ export default function PricingPage() {
|
||||
"Scalable, reliable, and cost-effective. AttendanceHub grows with our business. The API integration options are perfect for our custom workflows.",
|
||||
rating: 5,
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/joyful-business-woman-using-tablet-table_23-2148095762.jpg",
|
||||
"http://img.b2bpic.net/free-photo/joyful-business-woman-using-tablet-table_23-2148095762.jpg?_wi=2",
|
||||
imageAlt: "Divya Iyer",
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user