Merge version_2 into main #4
@@ -1,52 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Raleway } 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 inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const raleway = Raleway({
|
||||
variable: "--font-raleway", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "DM Valley School - Excellence in Education", description: "Premier educational institution offering academic excellence, innovative programs, and holistic development for students. Explore our campus and programs today.", keywords: "school, education, academics, students, learning, admissions, excellence", metadataBase: new URL("https://dmvalleyschool.edu"),
|
||||
alternates: {
|
||||
canonical: "https://dmvalleyschool.edu"},
|
||||
openGraph: {
|
||||
title: "DM Valley School - Excellence in Education", description: "Join our vibrant learning community. Academic excellence meets innovation at DM Valley School.", type: "website", siteName: "DM Valley School"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "DM Valley School - Excellence in Education", description: "Premier educational institution offering academic excellence and innovative learning programs."},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "DM Valley School", description: "Premier educational institution offering excellence in academics, innovation, and character development."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1414,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -180,7 +180,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
testimonial="DM Valley School has transformed my child's academic journey. The teachers are not just knowledgeable but genuinely invested in each student's growth. The blend of traditional excellence with modern innovation creates a truly exceptional learning environment."
|
||||
testimonial="DM Valley School has transformed my child's academic journey. My child's grades improved by 40% in the first year. The teachers are not just knowledgeable but genuinely invested in each student's growth. The blend of traditional excellence with modern innovation creates a truly exceptional learning environment."
|
||||
rating={5}
|
||||
author="Amit Patel, Parent"
|
||||
avatars={[
|
||||
|
||||
Reference in New Issue
Block a user