Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 58d02145e6 | |||
| b1038cdcf5 | |||
| ce9a16135c | |||
| 7e16c70b88 | |||
| 23bd04adb7 | |||
| 4935922c3f | |||
| bbf9805e0a |
@@ -1,65 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } 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 publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Mariado Schools | Academic and Character Excellence",
|
||||
description: "Private SDA-affiliated school in Arusha, Tanzania offering Nursery, Primary, Secondary and High School education with boarding facilities, sports programs, and university preparation.",
|
||||
keywords: "Mariado Schools, Arusha, private school, SDA, boarding school, education Tanzania, high school, secondary school",
|
||||
metadataBase: new URL("https://mariadoschools.edu.tz"),
|
||||
alternates: {
|
||||
canonical: "https://mariadoschools.edu.tz",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Mariado Schools | Academic and Character Excellence with God Ahead",
|
||||
description: "Excellence in academics and character development since 2014. Nursery to High School education in Usa River, Arusha.",
|
||||
url: "https://mariadoschools.edu.tz",
|
||||
siteName: "Mariado Schools",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/students-chatting-near-campus-building_23-2147850666.jpg",
|
||||
alt: "Mariado Schools Campus",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Mariado Schools | Excellence in Education",
|
||||
description: "Academic and Character Excellence with God Ahead. SDA-affiliated private school in Arusha, Tanzania.",
|
||||
images: ["http://img.b2bpic.net/free-photo/students-chatting-near-campus-building_23-2147850666.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Mariado Schools - Academic and Character Excellence", description: "Mariado Schools: Academic and Character Excellence with God Ahead. Nurturing young minds for excellence in academics and character development since 2014."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1427,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -46,7 +46,7 @@ export default function HomePage() {
|
||||
logoText="Mariado Schools"
|
||||
description="Academic and Character Excellence with God Ahead. Nurturing young minds for excellence in academics and character development since 2014, affiliated with the Seventh-Day Adventist Church."
|
||||
buttons={[
|
||||
{ text: "Learn More", href: "/about" },
|
||||
{ text: "Start Enrollment", href: "/about" },
|
||||
{ text: "Inquire Now", href: "/contact" },
|
||||
]}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
@@ -79,13 +79,17 @@ export default function HomePage() {
|
||||
description="Comprehensive education from early childhood through advanced secondary studies"
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Nursery School", description: "Baby Class, KG1, and KG2 with caring staff and safe play areas. Day and boarding facilities available with healthy, age-appropriate meals and nurturing environment.", imageSrc: "http://img.b2bpic.net/free-photo/young-children-playing-together-home_23-2148572962.jpg?_wi=1", imageAlt: "Nursery School"},
|
||||
id: "1", title: "Nursery School", description: "Baby Class, KG1, and KG2 with caring staff and safe play areas. Day and boarding facilities available with healthy, age-appropriate meals and nurturing environment.", imageSrc: "http://img.b2bpic.net/free-photo/young-children-playing-together-home_23-2148572962.jpg?_wi=1", imageAlt: "Nursery School"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Primary School", description: "Grade 1 to Grade 7 with excellent teaching staff, spacious playing fields for sports and outdoor activities. Day and boarding options with quality accommodation and healthy meals.", imageSrc: "http://img.b2bpic.net/free-photo/row-multiethnic-elementary-students-reading-book-classroom-vintage-effect-style-pictures_1253-1577.jpg?_wi=1", imageAlt: "Primary School"},
|
||||
id: "2", title: "Primary School", description: "Grade 1 to Grade 7 with excellent teaching staff, spacious playing fields for sports and outdoor activities. Day and boarding options with quality accommodation and healthy meals.", imageSrc: "http://img.b2bpic.net/free-photo/row-multiethnic-elementary-students-reading-book-classroom-vintage-effect-style-pictures_1253-1577.jpg?_wi=1", imageAlt: "Primary School"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Secondary School (O-Level)", description: "Form 1 to Form 4 offering Science, Business, and Arts subjects. Intensive examinations, discussions, and practical work to equip students academically and intellectually. Boarding facility.", imageSrc: "http://img.b2bpic.net/free-photo/girls-learning-more-about-chemistry-class_23-2149068370.jpg?_wi=1", imageAlt: "Secondary School"},
|
||||
id: "3", title: "Secondary School (O-Level)", description: "Form 1 to Form 4 offering Science, Business, and Arts subjects. Intensive examinations, discussions, and practical work to equip students academically and intellectually. Boarding facility.", imageSrc: "http://img.b2bpic.net/free-photo/girls-learning-more-about-chemistry-class_23-2149068370.jpg?_wi=1", imageAlt: "Secondary School"
|
||||
},
|
||||
{
|
||||
id: "4", title: "High School (A-Level)", description: "Form 5 and Form 6 with specialized combinations in Science, Business, Language and Social Sciences. Career mentoring and university preparation. Boarding facility.", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-coffee-break-library-using-smart-phone_496169-1228.jpg?_wi=1", imageAlt: "High School"},
|
||||
id: "4", title: "High School (A-Level)", description: "Form 5 and Form 6 with specialized combinations in Science, Business, Language and Social Sciences. Career mentoring and university preparation. Boarding facility.", imageSrc: "http://img.b2bpic.net/free-photo/group-friends-having-coffee-break-library-using-smart-phone_496169-1228.jpg?_wi=1", imageAlt: "High School"
|
||||
},
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
@@ -103,13 +107,17 @@ export default function HomePage() {
|
||||
description="Comprehensive support for academic and personal development"
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Comfortable Accommodation", description: "Well-maintained boarding facilities for students with quality meals designed to meet nutritional needs at every school level.", imageSrc: "http://img.b2bpic.net/free-photo/roommates-sharing-happy-moments-together_23-2149112089.jpg", imageAlt: "Student Accommodation"},
|
||||
id: "1", title: "Comfortable Accommodation", description: "Well-maintained boarding facilities for students with quality meals designed to meet nutritional needs at every school level.", imageSrc: "http://img.b2bpic.net/free-photo/roommates-sharing-happy-moments-together_23-2149112089.jpg", imageAlt: "Student Accommodation"
|
||||
},
|
||||
{
|
||||
id: "2", title: "Sports & Recreation", description: "Extensive sports programs including football, netball, basketball, and volleyball. Large playing areas designed for physical development and team building.", imageSrc: "http://img.b2bpic.net/free-photo/basketball-court_1127-3006.jpg", imageAlt: "Sports Facilities"},
|
||||
id: "2", title: "Sports & Recreation", description: "Extensive sports programs including football, netball, basketball, and volleyball. Large playing areas designed for physical development and team building.", imageSrc: "http://img.b2bpic.net/free-photo/basketball-court_1127-3006.jpg", imageAlt: "Sports Facilities"
|
||||
},
|
||||
{
|
||||
id: "3", title: "Extra-Curricular Activities", description: "Academic clubs, debates, morning talks, and various competitive activities to develop leadership, communication, and critical thinking skills.", imageSrc: "http://img.b2bpic.net/free-photo/interested-people-communicating_23-2147655797.jpg", imageAlt: "Extra-Curricular Activities"},
|
||||
id: "3", title: "Extra-Curricular Activities", description: "Academic clubs, debates, morning talks, and various competitive activities to develop leadership, communication, and critical thinking skills.", imageSrc: "http://img.b2bpic.net/free-photo/interested-people-communicating_23-2147655797.jpg", imageAlt: "Extra-Curricular Activities"
|
||||
},
|
||||
{
|
||||
id: "4", title: "Scholarship & Support", description: "Sponsored students by donors within and outside the country. Comprehensive care and support for all students to ensure equal opportunities.", imageSrc: "http://img.b2bpic.net/free-photo/happy-college-students-communicating-with-their-professor-hallway_637285-9249.jpg", imageAlt: "Scholarship Programs"},
|
||||
id: "4", title: "Scholarship & Support", description: "Sponsored students by donors within and outside the country. Comprehensive care and support for all students to ensure equal opportunities.", imageSrc: "http://img.b2bpic.net/free-photo/happy-college-students-communicating-with-their-professor-hallway_637285-9249.jpg", imageAlt: "Scholarship Programs"
|
||||
},
|
||||
]}
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
animationType="slide-up"
|
||||
@@ -175,4 +183,4 @@ export default function HomePage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #250c0d;;
|
||||
--primary-cta: #b82b40;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--accent: #b90941;;
|
||||
--background-accent: #e8a8b6;; */
|
||||
/* --background: #ffffff;;;
|
||||
--card: #f9f9f9;;;
|
||||
--foreground: #000612e6;;;
|
||||
--primary-cta: #106EFB;;;
|
||||
--secondary-cta: #f9f9f9;;;
|
||||
--accent: #e2e2e2;;;
|
||||
--background-accent: #106EFB;;; */
|
||||
|
||||
--background: #f7f6f7;;
|
||||
--card: #ffffff;;
|
||||
--foreground: #250c0d;;
|
||||
--primary-cta: #b82b40;;
|
||||
--primary-cta-text: #f7f6f7;;
|
||||
--secondary-cta: #ffffff;;
|
||||
--secondary-cta-text: #250c0d;;
|
||||
--accent: #b90941;;
|
||||
--background-accent: #e8a8b6;;
|
||||
--background: #ffffff;;;
|
||||
--card: #f9f9f9;;;
|
||||
--foreground: #000612e6;;;
|
||||
--primary-cta: #106EFB;;;
|
||||
--primary-cta-text: #ffffff;;;
|
||||
--secondary-cta: #f9f9f9;;;
|
||||
--secondary-cta-text: #000612e6;;;
|
||||
--accent: #e2e2e2;;;
|
||||
--background-accent: #106EFB;;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user