diff --git a/src/app/admissions/page.tsx b/src/app/admissions/page.tsx
index 7adb4be..c0a1b65 100644
--- a/src/app/admissions/page.tsx
+++ b/src/app/admissions/page.tsx
@@ -12,7 +12,7 @@ export default function AdmissionsPage() {
{ name: "Programs", id: "/programs" },
{ name: "Courses", id: "/courses" },
{ name: "Admissions", id: "/admissions" },
- { name: "About", id: "/" },
+ { name: "About", id: "about" },
{ name: "Contact", id: "/contact" },
];
@@ -91,15 +91,20 @@ export default function AdmissionsPage() {
imageAlt="Admissions support"
faqs={[
{
- id: "1", title: "What are the application requirements?", content: "Required materials include: completed application form, official transcripts from current school, letter of recommendation from a teacher, essay on your educational goals, and any standardized test scores if available. We'll guide you through each step."},
+ id: "1", title: "What are the application requirements?", content: "Required materials include: completed application form, official transcripts from current school, letter of recommendation from a teacher, essay on your educational goals, and any standardized test scores if available. We'll guide you through each step."
+ },
{
- id: "2", title: "When are application deadlines?", content: "Rolling admissions begin September 1st. Early applications receive priority consideration. Most programs have soft deadlines in December and final deadlines in March, but spots may fill before the deadline."},
+ id: "2", title: "When are application deadlines?", content: "Rolling admissions begin September 1st. Early applications receive priority consideration. Most programs have soft deadlines in December and final deadlines in March, but spots may fill before the deadline."
+ },
{
- id: "3", title: "What is the tuition and financial aid process?", content: "We offer competitive tuition rates with flexible payment plans. Financial aid is available through scholarships, grants, and payment plans. Complete the financial aid application to explore options that fit your family's budget."},
+ id: "3", title: "What is the tuition and financial aid process?", content: "We offer competitive tuition rates with flexible payment plans. Financial aid is available through scholarships, grants, and payment plans. Complete the financial aid application to explore options that fit your family's budget."
+ },
{
- id: "4", title: "Can I visit campus before applying?", content: "Absolutely! We encourage campus visits. Schedule a tour, attend an information session, or participate in a trial class. Visiting helps you experience our community and make an informed decision."},
+ id: "4", title: "Can I visit campus before applying?", content: "Absolutely! We encourage campus visits. Schedule a tour, attend an information session, or participate in a trial class. Visiting helps you experience our community and make an informed decision."
+ },
{
- id: "5", title: "How long does the application process take?", content: "Once you submit your complete application, our team typically reviews it within 2-3 weeks. We'll contact you with an admissions decision and next steps. Admitted students have 2 weeks to confirm enrollment."},
+ id: "5", title: "How long does the application process take?", content: "Once you submit your complete application, our team typically reviews it within 2-3 weeks. We'll contact you with an admissions decision and next steps. Admitted students have 2 weeks to confirm enrollment."
+ },
]}
/>
@@ -127,4 +132,4 @@ export default function AdmissionsPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 67c5185..bd656b5 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -2,24 +2,24 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import HeroOverlay from '@/components/sections/hero/HeroOverlay';
+import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import ContactCTA from '@/components/sections/contact/ContactCTA';
-import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
-import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import FooterBase from '@/components/sections/footer/FooterBase';
+import { Mail } from 'lucide-react';
export default function ContactPage() {
const navItems = [
{ name: "Programs", id: "/programs" },
{ name: "Courses", id: "/courses" },
{ name: "Admissions", id: "/admissions" },
- { name: "About", id: "/" },
+ { name: "About", id: "about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
- title: "Programs",
- items: [
+ title: "Programs", items: [
{ label: "Core Curriculum", href: "/programs" },
{ label: "Elective Courses", href: "/courses" },
{ label: "Career Tracks", href: "/programs" },
@@ -27,8 +27,7 @@ export default function ContactPage() {
],
},
{
- title: "Resources",
- items: [
+ title: "Resources", items: [
{ label: "Course Catalog", href: "/courses" },
{ label: "Academic Calendar", href: "/" },
{ label: "Student Support", href: "/" },
@@ -36,8 +35,7 @@ export default function ContactPage() {
],
},
{
- title: "Admissions",
- items: [
+ title: "Admissions", items: [
{ label: "Apply Now", href: "/admissions" },
{ label: "Financial Aid", href: "/" },
{ label: "Campus Tours", href: "/" },
@@ -63,92 +61,50 @@ export default function ContactPage() {
-
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
@@ -162,4 +118,4 @@ export default function ContactPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/courses/page.tsx b/src/app/courses/page.tsx
index 4f6e6e0..97cda49 100644
--- a/src/app/courses/page.tsx
+++ b/src/app/courses/page.tsx
@@ -2,24 +2,25 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
-import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
+import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBase from '@/components/sections/footer/FooterBase';
+import { BookMarked } from 'lucide-react';
export default function CoursesPage() {
const navItems = [
{ name: "Programs", id: "/programs" },
{ name: "Courses", id: "/courses" },
{ name: "Admissions", id: "/admissions" },
- { name: "About", id: "/" },
+ { name: "About", id: "about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
- title: "Programs",
- items: [
+ title: "Programs", items: [
{ label: "Core Curriculum", href: "/programs" },
{ label: "Elective Courses", href: "/courses" },
{ label: "Career Tracks", href: "/programs" },
@@ -27,8 +28,7 @@ export default function CoursesPage() {
],
},
{
- title: "Resources",
- items: [
+ title: "Resources", items: [
{ label: "Course Catalog", href: "/courses" },
{ label: "Academic Calendar", href: "/" },
{ label: "Student Support", href: "/" },
@@ -36,8 +36,7 @@ export default function CoursesPage() {
],
},
{
- title: "Admissions",
- items: [
+ title: "Admissions", items: [
{ label: "Apply Now", href: "/admissions" },
{ label: "Financial Aid", href: "/" },
{ label: "Campus Tours", href: "/" },
@@ -63,107 +62,84 @@ export default function CoursesPage() {
-
+
+
+
+
+
-
-
+
@@ -172,13 +148,13 @@ export default function CoursesPage() {
@@ -192,4 +168,4 @@ export default function CoursesPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 480c776..e77397a 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,58 +1,22 @@
import type { Metadata } from "next";
-import { DM_Sans } from "next/font/google";
+import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "./styles/variables.css";
+import "./styles/base.css";
-const dmSans = DM_Sans({
- variable: "--font-dm-sans",
- subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "School Program Directory & Course Catalog | Academy Programs",
- description: "Explore our comprehensive school programs and course catalog. Discover academic tracks, electives, and career pathways designed for student success.",
- keywords: "school programs, course catalog, education, admissions, academic programs, student success",
- metadataBase: new URL("https://academy-programs.edu"),
- alternates: {
- canonical: "https://academy-programs.edu",
- },
- openGraph: {
- title: "School Program Directory & Course Catalog",
- description: "Explore comprehensive school programs and courses designed for student success and academic excellence.",
- type: "website",
- siteName: "Academy Programs",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/schoolgirl-with-notebook-her-hands-sunset-background-school-goes-school_169016-59085.jpg",
- alt: "Academy Programs Campus",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "School Program Directory & Course Catalog",
- description: "Discover our comprehensive academic programs and course options.",
- images: ["http://img.b2bpic.net/free-photo/schoolgirl-with-notebook-her-hands-sunset-background-school-goes-school_169016-59085.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Academy Programs", description: "Discover comprehensive academic programs and courses"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 04cb4f7..464e6eb 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -14,11 +14,11 @@ import { ArrowRight } from 'lucide-react';
export default function HomePage() {
const navItems = [
- { name: "Programs", id: "programs" },
- { name: "Courses", id: "courses" },
- { name: "Admissions", id: "admissions" },
+ { name: "Programs", id: "/programs" },
+ { name: "Courses", id: "/courses" },
+ { name: "Admissions", id: "/admissions" },
{ name: "About", id: "about" },
- { name: "Contact", id: "contact" },
+ { name: "Contact", id: "/contact" },
];
const footerColumns = [
@@ -134,13 +134,16 @@ export default function HomePage() {
products={[
{
id: "1", brand: "Science Department", name: "Advanced Biology", price: "Full Year Course", rating: 5,
- reviewCount: "234", imageSrc: "http://img.b2bpic.net/free-photo/girl-near-microscope-observing-teacher_259150-60352.jpg?_wi=2", imageAlt: "Advanced Biology course"},
+ reviewCount: "234", imageSrc: "http://img.b2bpic.net/free-photo/girl-near-microscope-observing-teacher_259150-60352.jpg?_wi=2", imageAlt: "Advanced Biology course"
+ },
{
id: "2", brand: "Technology Department", name: "Web Development", price: "Full Year Course", rating: 5,
- reviewCount: "189", imageSrc: "http://img.b2bpic.net/free-photo/young-teen-girls-study-desk-attending-virtual-webinar-class_482257-123130.jpg", imageAlt: "Web Development course"},
+ reviewCount: "189", imageSrc: "http://img.b2bpic.net/free-photo/young-teen-girls-study-desk-attending-virtual-webinar-class_482257-123130.jpg", imageAlt: "Web Development course"
+ },
{
id: "3", brand: "Arts Department", name: "Digital Media Arts", price: "Full Year Course", rating: 5,
- reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/vendor-carrying-lemons-customers_482257-102023.jpg?_wi=2", imageAlt: "Digital Media Arts course"},
+ reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/vendor-carrying-lemons-customers_482257-102023.jpg?_wi=2", imageAlt: "Digital Media Arts course"
+ },
]}
/>
@@ -154,13 +157,17 @@ export default function HomePage() {
useInvertedBackground={false}
testimonials={[
{
- id: "1", title: "Transformed My Academic Future", quote: "The programs offered here are exceptional. I gained practical skills, made lifelong friendships, and discovered my passion for technology. The faculty truly cares about student success.", name: "Sarah Johnson", role: "Class of 2024, Technology Track", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-guy-holding-notebooks-celebrating-making-fist-pump-shouting-yes-with-excitement-sta_1258-146346.jpg", imageAlt: "Sarah Johnson"},
+ id: "1", title: "Transformed My Academic Future", quote: "The programs offered here are exceptional. I gained practical skills, made lifelong friendships, and discovered my passion for technology. The faculty truly cares about student success.", name: "Sarah Johnson", role: "Class of 2024, Technology Track", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-guy-holding-notebooks-celebrating-making-fist-pump-shouting-yes-with-excitement-sta_1258-146346.jpg", imageAlt: "Sarah Johnson"
+ },
{
- id: "2", title: "Well-Rounded Education Experience", quote: "My daughter has flourished in your programs. The balance between academics and extracurriculars, combined with caring teachers, made all the difference in her growth and confidence.", name: "Michael Chen", role: "Parent of Current Student", imageSrc: "http://img.b2bpic.net/free-photo/happy-university-students-using-laptop-while-sitting-hallway_637285-9244.jpg?_wi=1", imageAlt: "Michael Chen"},
+ id: "2", title: "Well-Rounded Education Experience", quote: "My daughter has flourished in your programs. The balance between academics and extracurriculars, combined with caring teachers, made all the difference in her growth and confidence.", name: "Michael Chen", role: "Parent of Current Student", imageSrc: "http://img.b2bpic.net/free-photo/happy-university-students-using-laptop-while-sitting-hallway_637285-9244.jpg?_wi=1", imageAlt: "Michael Chen"
+ },
{
- id: "3", title: "Career Ready After Graduation", quote: "The career track program prepared me perfectly for my internship and job offers. Real-world projects, industry connections, and mentorship gave me a significant advantage in the job market.", name: "Emily Rodriguez", role: "Class of 2023, Business Track", imageSrc: "http://img.b2bpic.net/free-photo/best-friends-playing-graduation-ceremony_23-2148505278.jpg", imageAlt: "Emily Rodriguez"},
+ id: "3", title: "Career Ready After Graduation", quote: "The career track program prepared me perfectly for my internship and job offers. Real-world projects, industry connections, and mentorship gave me a significant advantage in the job market.", name: "Emily Rodriguez", role: "Class of 2023, Business Track", imageSrc: "http://img.b2bpic.net/free-photo/best-friends-playing-graduation-ceremony_23-2148505278.jpg", imageAlt: "Emily Rodriguez"
+ },
{
- id: "4", title: "Supportive Learning Environment", quote: "This school genuinely supports every student's unique journey. From academic support to personal growth, the commitment to excellence is evident in every program offered.", name: "David Kim", role: "Class of 2024, Arts Program", imageSrc: "http://img.b2bpic.net/free-photo/girl-with-book-striped-shirt_1150-23.jpg", imageAlt: "David Kim"},
+ id: "4", title: "Supportive Learning Environment", quote: "This school genuinely supports every student's unique journey. From academic support to personal growth, the commitment to excellence is evident in every program offered.", name: "David Kim", role: "Class of 2024, Arts Program", imageSrc: "http://img.b2bpic.net/free-photo/girl-with-book-striped-shirt_1150-23.jpg", imageAlt: "David Kim"
+ },
]}
/>
@@ -188,4 +195,4 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/programs/page.tsx b/src/app/programs/page.tsx
index ec24a2b..09fd733 100644
--- a/src/app/programs/page.tsx
+++ b/src/app/programs/page.tsx
@@ -2,24 +2,25 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
-import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
+import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBase from '@/components/sections/footer/FooterBase';
+import { BookOpen } from 'lucide-react';
export default function ProgramsPage() {
const navItems = [
{ name: "Programs", id: "/programs" },
{ name: "Courses", id: "/courses" },
{ name: "Admissions", id: "/admissions" },
- { name: "About", id: "/" },
+ { name: "About", id: "about" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
- title: "Programs",
- items: [
+ title: "Programs", items: [
{ label: "Core Curriculum", href: "/programs" },
{ label: "Elective Courses", href: "/courses" },
{ label: "Career Tracks", href: "/programs" },
@@ -27,8 +28,7 @@ export default function ProgramsPage() {
],
},
{
- title: "Resources",
- items: [
+ title: "Resources", items: [
{ label: "Course Catalog", href: "/courses" },
{ label: "Academic Calendar", href: "/" },
{ label: "Student Support", href: "/" },
@@ -36,8 +36,7 @@ export default function ProgramsPage() {
],
},
{
- title: "Admissions",
- items: [
+ title: "Admissions", items: [
{ label: "Apply Now", href: "/admissions" },
{ label: "Financial Aid", href: "/" },
{ label: "Campus Tours", href: "/" },
@@ -63,81 +62,63 @@ export default function ProgramsPage() {
-
-
+
-
-
+
+
+
+
+
@@ -145,14 +126,14 @@ export default function ProgramsPage() {
@@ -166,4 +147,4 @@ export default function ProgramsPage() {
);
-}
\ No newline at end of file
+}