Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7d38b3659a | |||
| 4ea2807ad0 | |||
| 62798156f7 | |||
| 0a6d5a96a1 | |||
| 58e9c77b50 | |||
| 771a84528b | |||
| cc8c9515ea | |||
| d7dfd93919 |
@@ -1,58 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Lato } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import type { Metadata } from 'next';
|
||||
import { Inter } from 'next/font/google';
|
||||
import './globals.css';
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const lato = Lato({
|
||||
variable: "--font-lato", subsets: ["latin"],
|
||||
weight: ["100", "300", "400", "700", "900"],
|
||||
});
|
||||
const inter = Inter({ subsets: ['latin'] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "SBK Boys Higher Secondary School | Admissions in Aruppukkottai", description: "SBK Boys Higher Secondary School offers quality education, experienced faculty, and strong academic results. Apply for admissions in Aruppukkottai, Tamil Nadu.", keywords: "best school in Aruppukkottai, higher secondary school Tamil Nadu, boys school education, school admissions, academic excellence", metadataBase: new URL("https://sbkschool.edu"),
|
||||
alternates: {
|
||||
canonical: "https://sbkschool.edu"},
|
||||
openGraph: {
|
||||
title: "SBK Boys Higher Secondary School | Quality Education", description: "Join SBK School for disciplined education and academic excellence. Admissions open for higher secondary students.", url: "https://sbkschool.edu", siteName: "SBK Boys School", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/students-starting-run_23-2147679020.jpg", alt: "SBK Boys School"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "SBK Boys Higher Secondary School", description: "Quality education and academic excellence in Aruppukkottai. Apply for admissions now.", images: ["http://img.b2bpic.net/free-photo/students-starting-run_23-2147679020.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
title: 'SBK Boys Higher Secondary School',
|
||||
description: 'Quality education in Aruppukkottai - Building bright futures through disciplined learning',
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1420,7 +1384,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -205,7 +205,7 @@ export default function LandingPage() {
|
||||
tag="How to Apply"
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Step 1: Submit Enquiry Form", description: "Fill out the admission enquiry form with your basic details. We'll review your application and schedule an appointment for further discussion.", media: { imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215382.jpg?_wi=2", imageAlt: "students in classroom learning together" },
|
||||
id: "1", title: "Step 1: Submit Enquiry Form", description: "Fill out the admission enquiry form with your basic details. We'll respond within 24 hours to confirm receipt and schedule an appointment for further discussion. You'll receive updates on every step of the process via email or phone.", media: { imageSrc: "http://img.b2bpic.net/free-photo/study-group-learning-library_23-2149215382.jpg?_wi=2", imageAlt: "students in classroom learning together" },
|
||||
items: [
|
||||
{ icon: ClipboardList, text: "Complete form details" },
|
||||
{ icon: CheckCircle, text: "Application review" },
|
||||
@@ -245,7 +245,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
tag="Get in Touch"
|
||||
title="Ready to Join SBK Boys School?"
|
||||
description="Fill out the form below to inquire about admissions, or call us directly to speak with our admissions team. We're here to answer all your questions about our school and programs."
|
||||
description="Call us directly to speak with our admissions team, or fill out the form below to inquire about admissions. Submit your enquiry and we'll respond within 24 hours with next steps and any information you need. You can expect a confirmation email immediately, followed by a call from our admissions counselor to schedule your campus visit."
|
||||
background={{ variant: "downward-rays-static" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email"
|
||||
|
||||
Reference in New Issue
Block a user