Merge version_3 into main #2

Merged
bender merged 2 commits from version_3 into main 2026-06-12 15:51:42 +00:00
2 changed files with 135 additions and 1 deletions

View File

@@ -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"}}
/>
</div>
@@ -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"
},

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="hover-bubble"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="mediumLarge"
sizing="mediumLargeSizeMediumTitles"
background="noise"
cardStyle="solid"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={navItems}
logoSrc="http://img.b2bpic.net/free-photo/delaware-flag-with-banner_187299-35477.jpg"
logoAlt="Orlando Private School Logo"
brandName="Orlando Private School"
button={{ text: "Schedule a Tour", href: "#contact-us" }}
/>
</div>
<div id="ethical-conduct-content" data-section="ethical-conduct-content" className="py-40">
<LegalSection
layout="page"
title="Orlando Private School Standards of Ethical Conduct"
sections={[
{
heading: "", content: [{ type: "paragraph", text: "The Orlando Private School is committed to upholding the highest standards of ethical conduct in all aspects of its operations, fostering a community built on integrity, respect, and responsibility. These standards apply to all administrators, faculty, staff, students, parents, and volunteers." }]
},
{
heading: "1. Respect for Individuals and Diversity", content: [{ type: "list", items: [
"Treat all members of the school community with dignity, respect, and fairness, regardless of background, race, ethnicity, religion, gender, sexual orientation, disability, or socio-economic status.", "Foster an inclusive environment where every individual feels valued, safe, and supported.", "Prohibit all forms of harassment, discrimination, and bullying."
] }]
},
{
heading: "2. Integrity and Honesty", content: [{ type: "list", items: [
"Conduct all activities with honesty, transparency, and integrity.", "Ensure academic honesty by promoting original work and discouraging plagiarism and cheating.", "Handle all financial matters responsibly and with accountability."
] }]
},
{
heading: "3. Professionalism and Responsibility", content: [{ type: "list", items: [
"Maintain professional boundaries and appropriate relationships with students.", "Exercise sound judgment and act in the best interest of the students and the school.", "Adhere to all school policies, procedures, and applicable laws and regulations.", "Protect the privacy and confidentiality of student and staff information."
] }]
},
{
heading: "4. Commitment to Safety and Well-being", content: [{ type: "list", items: [
"Prioritize the physical, emotional, and psychological safety of all students.", "Report any concerns about student safety or well-being promptly and appropriately.", "Maintain a safe and healthy learning and working environment."
] }]
},
{
heading: "5. Community Engagement and Collaboration", content: [{ type: "list", items: [
"Promote positive and constructive relationships among all stakeholders.", "Encourage open communication and collaboration to support the schools mission.", "Act as positive ambassadors for the Orlando Private School in the wider community."
] }]
},
{
heading: "6. Reporting Ethical Concerns", content: [{ type: "list", items: [
"Members of the school community are encouraged to report any observed or suspected violations of these Standards of Ethical Conduct.", "All reports will be handled with discretion and appropriate investigation, free from retaliation."
] }]
},
{
heading: "", content: [{ type: "paragraph", text: "Violation of these Standards may result in disciplinary action, up to and including dismissal from employment, expulsion from the school, or termination of volunteer/parental privileges."
}]
}
]}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={footerColumns}
logoSrc="http://img.b2bpic.net/free-photo/delaware-flag-with-banner_187299-35477.jpg"
logoAlt="Orlando Private School Logo"
logoText="Orlando Private School"
copyrightText="© 2024 Orlando Private School. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}