Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0a6d5a96a1 | |||
| 58e9c77b50 | |||
| 771a84528b | |||
| cc8c9515ea | |||
| d7dfd93919 |
@@ -1,58 +1,22 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from 'next';
|
||||||
import { Halant } from "next/font/google";
|
import { Inter } from 'next/font/google';
|
||||||
import { Inter } from "next/font/google";
|
import './globals.css';
|
||||||
import { Lato } from "next/font/google";
|
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ['latin'] });
|
||||||
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"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: 'SBK Boys Higher Secondary School',
|
||||||
alternates: {
|
description: 'Quality education in Aruppukkottai - Building bright futures through disciplined learning',
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1420,7 +1384,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -245,7 +245,7 @@ export default function LandingPage() {
|
|||||||
<ContactCenter
|
<ContactCenter
|
||||||
tag="Get in Touch"
|
tag="Get in Touch"
|
||||||
title="Ready to Join SBK Boys School?"
|
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. We're here to answer all your questions about our school and programs."
|
||||||
background={{ variant: "downward-rays-static" }}
|
background={{ variant: "downward-rays-static" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
inputPlaceholder="Enter your email"
|
inputPlaceholder="Enter your email"
|
||||||
|
|||||||
Reference in New Issue
Block a user