diff --git a/src/app/file/page.tsx b/src/app/file/page.tsx index 4cc7bd6..89d9e3c 100644 --- a/src/app/file/page.tsx +++ b/src/app/file/page.tsx @@ -36,6 +36,9 @@ export default function FilePage() { name: "Student Life", id: "#student-life"}, { name: "Tuition", id: "#tuition"}, + { + name: "Ethical Conduct", id: "/orlando-private-school-standards-of-ethical-conduct" + }, { name: "File", id: "/file" }, @@ -46,7 +49,7 @@ export default function FilePage() { logoAlt="Orlando Private School Logo" brandName="Orlando Private School" button={{ - text: "Schedule a Tour", href: "/contact-us"}} + text: "Schedule a Tour", href: "#contact-us"}} /> @@ -79,6 +82,9 @@ export default function FilePage() { label: "Admissions", href: "#admissions"}, { label: "Tuition", href: "#tuition"}, + { + label: "Ethical Conduct", href: "/orlando-private-school-standards-of-ethical-conduct" + }, { label: "File", href: "/file" }, diff --git a/src/app/orlando-private-school-standards-of-ethical-conduct/page.tsx b/src/app/orlando-private-school-standards-of-ethical-conduct/page.tsx new file mode 100644 index 0000000..66e9944 --- /dev/null +++ b/src/app/orlando-private-school-standards-of-ethical-conduct/page.tsx @@ -0,0 +1,128 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import LegalSection from '@/components/legal/LegalSection'; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterBase from '@/components/sections/footer/FooterBase'; + +export default function EthicalConductPage() { + const navItems = [ + { name: "Home", id: "#home" }, + { name: "About", id: "#about" }, + { name: "Academics", id: "#academics" }, + { name: "Admissions", id: "#admissions" }, + { name: "Student Life", id: "#student-life" }, + { name: "Tuition", id: "#tuition" }, + { name: "Ethical Conduct", id: "/orlando-private-school-standards-of-ethical-conduct" }, + { name: "File", id: "/file" }, + { name: "Contact", id: "#contact-us" } + ]; + + const footerColumns = [ + { + title: "Quick Links", items: [ + { label: "Home", href: "#home" }, + { label: "About Us", href: "#about" }, + { label: "Academics", href: "#academics" }, + { label: "Admissions", href: "#admissions" }, + { label: "Tuition", href: "#tuition" }, + { label: "Ethical Conduct", href: "/orlando-private-school-standards-of-ethical-conduct" }, + { label: "File", href: "/file" }, + { label: "Contact", href: "#contact-us" } + ] + }, + { + title: "Contact Us", items: [ + { label: "4607 Pinehills Orlando Fl 32808", href: "https://www.google.com/maps/search/4607+Pinehills+Orlando+Fl+32808" }, + { label: "info@orlandoprivateschool.com", href: "mailto:info@orlandoprivateschool.com" }, + { label: "(407) 555-1234", href: "tel:+14075551234" }, + { label: "Office Hours: Mon-Fri, 8 AM - 4 PM", href: "#" } + ] + } + ]; + + return ( + + + + +
+ +
+ + +
+
+ ); +}