Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-14 18:27:14 +00:00
6 changed files with 58 additions and 19 deletions

View File

@@ -64,7 +64,7 @@ export default function AboutPage() {
tag="Our Story"
tagIcon={BookOpen}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/focused-adult-students-taking-online-tests_74855-1877.jpg"
imageSrc="http://img.b2bpic.net/free-photo/focused-adult-students-taking-online-tests_74855-1877.jpg?_wi=1"
imageAlt="Richfield Campus Learning Environment"
mediaAnimation="blur-reveal"
imagePosition="right"

View File

@@ -80,7 +80,7 @@ export default function AdmissionsPage() {
{ text: "Contact Admissions", href: "#contact-admissions" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg"
imageSrc="http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg?_wi=7"
imageAlt="Welcome to Richfield"
mediaAnimation="blur-reveal"
imagePosition="right"

View File

@@ -98,7 +98,7 @@ export default function CampusLifePage() {
tag="Experience Community"
tagIcon={Users}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/focused-adult-students-taking-online-tests_74855-1877.jpg"
imageSrc="http://img.b2bpic.net/free-photo/focused-adult-students-taking-online-tests_74855-1877.jpg?_wi=2"
imageAlt="Campus Community Life"
mediaAnimation="blur-reveal"
imagePosition="right"

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Nunito } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Nunito } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const nunito = Nunito({
variable: "--font-nunito",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Richfield College - Premium Career-Focused Education",
description: "Experience luxury tertiary education with personal mentorship at Richfield College. Career-focused programs, supportive lecturers, modern campus facilities, and 95% employment rate.",
keywords: "university, tertiary education, South Africa, career programs, business management, IT, marketing, finance, supportive education, Johannesburg, Bryanston",
metadataBase: new URL("https://richfield-college.edu.za"),
alternates: {
canonical: "https://richfield-college.edu.za",
},
openGraph: {
title: "Richfield College - Where Ambition Meets Opportunity",
description: "Premium career-focused education with personal mentorship and real-world opportunities. Join our supportive community of ambitious students.",
url: "https://richfield-college.edu.za",
siteName: "Richfield College",
type: "website",
images: [
{
url: "https://richfield-college.edu.za/og-image.jpg",
alt: "Richfield College Campus",
},
],
},
twitter: {
card: "summary_large_image",
title: "Richfield College - Premium Tertiary Education",
description: "Career-focused education with supportive lecturers and modern facilities. Build your future with us.",
images: ["https://richfield-college.edu.za/twitter-image.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${nunito.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -79,7 +79,7 @@ export default function HomePage() {
{ text: "Explore Programs", href: "/programs" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg"
imageSrc="http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg?_wi=1"
imageAlt="Richfield College Modern Campus"
mediaAnimation="blur-reveal"
imagePosition="right"
@@ -113,7 +113,7 @@ export default function HomePage() {
quote: "Richfield Bryanston Campus has been an amazing experience. The staff truly care about student growth and success. Lecturers go beyond teaching—they mentor and guide you toward your career goals.",
name: "Paul Masalesa",
role: "Business Management Graduate",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-smiling-woman-looking-camera_23-2148187139.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-smiling-woman-looking-camera_23-2148187139.jpg?_wi=1",
imageAlt: "Paul Masalesa",
},
{
@@ -158,7 +158,7 @@ export default function HomePage() {
quote: "Richfield offers world-class education without the astronomical price tag. Quality education should be accessible, and they prove it every day.",
name: "Sarah Chen",
role: "Marketing Graduate",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-smiling-woman-looking-camera_23-2148187139.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-smiling-woman-looking-camera_23-2148187139.jpg?_wi=2",
imageAlt: "Sarah Chen",
},
]}

View File

@@ -77,7 +77,7 @@ export default function ProgramsPage() {
tagAnimation="slide-up"
buttons={[{ text: "Discover Programs", href: "#programs-list" }]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg"
imageSrc="http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg?_wi=2"
imageAlt="Campus Learning Facilities"
mediaAnimation="blur-reveal"
imagePosition="right"
@@ -97,28 +97,28 @@ export default function ProgramsPage() {
id: "program-business",
name: "Business Management",
price: "From R35,000/semester",
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg?_wi=3",
imageAlt: "Business Management Program",
},
{
id: "program-it",
name: "Information Technology",
price: "From R38,000/semester",
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg?_wi=4",
imageAlt: "IT Program",
},
{
id: "program-marketing",
name: "Marketing & Entrepreneurship",
price: "From R33,000/semester",
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg?_wi=5",
imageAlt: "Marketing Program",
},
{
id: "program-finance",
name: "Finance & Accounting",
price: "From R36,000/semester",
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-blonde-lady-outdoors_171337-19434.jpg?_wi=6",
imageAlt: "Finance Program",
},
]}