9 Commits

Author SHA1 Message Date
5e038a9a0b Merge version_3 into main
Merge version_3 into main
2026-03-05 14:09:28 +00:00
a28ab92085 Update src/app/page.tsx 2026-03-05 14:09:24 +00:00
b97e170d7a Update src/app/layout.tsx 2026-03-05 14:09:23 +00:00
dbebb3bd48 Merge version_2 into main
Merge version_2 into main
2026-03-05 14:07:51 +00:00
e40fd4f632 Update src/app/page.tsx 2026-03-05 14:07:47 +00:00
3be6036db5 Update src/app/layout.tsx 2026-03-05 14:07:46 +00:00
e042c29816 Merge version_1 into main
Merge version_1 into main
2026-03-05 14:06:46 +00:00
a9d3bc1d84 Merge version_1 into main
Merge version_1 into main
2026-03-05 14:06:01 +00:00
0d3ceac36d Merge version_1 into main
Merge version_1 into main
2026-03-05 14:04:44 +00:00
2 changed files with 10 additions and 43 deletions

View File

@@ -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>
);
}
}

View File

@@ -76,7 +76,7 @@ export default function LandingPage() {
title="Building Tomorrow's Leaders Through Quality Education and Holistic Development"
useInvertedBackground={false}
buttons={[
{ text: "Learn Our Story", href: "#team" }
{ text: "Meet Our Team", href: "#team" }
]}
buttonAnimation="slide-up"
/>
@@ -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={[
@@ -283,4 +283,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}