Merge version_2 into main #6

Merged
bender merged 2 commits from version_2 into main 2026-03-06 06:39:39 +00:00
2 changed files with 13 additions and 36 deletions

View File

@@ -1,50 +1,28 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Inter_Tight } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "LASEA - Premier CBSE School for Excellence in Education", description: "Lady Anusuya Singhania Educational Academy - A leading CBSE school committed to academic excellence, innovation, and character development for over 35 years.", keywords: "CBSE school, education, admissions, secondary education, academic excellence, school in India", robots: {
index: true,
follow: true,
},
openGraph: {
title: "LASEA - Premier CBSE School", description: "Experience excellence in education at Lady Anusuya Singhania Educational Academy", siteName: "LASEA Academy", type: "website"},
twitter: {
card: "summary_large_image", title: "LASEA - Premier CBSE School", description: "Leading educational institution dedicated to shaping future leaders"},
};
title: "LASEA - Premier CBSE School", description: "Lady Anusuya Singhania Educational Academy - Leading educational excellence since 1986"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1412,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -67,7 +67,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
background={{ variant: "plain" }}
buttons={[
{ text: "Explore School", href: "#about" },
{ text: "Start Admission", href: "#contact" },
{ text: "Admission Open", href: "#contact" },
]}
buttonAnimation="slide-up"