Compare commits
16 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f0670e3fd6 | |||
| 3bb1588cc6 | |||
| c569366525 | |||
| 7f4732582a | |||
| 29eb002529 | |||
| b28bbe54d0 | |||
| d3d75b04da | |||
| e944b3a786 | |||
| 7716218fd6 | |||
| 610aa9a0c9 | |||
| cc418a0344 | |||
| 86071e50cb | |||
| 806e00319a | |||
| 2f12383919 | |||
| 412c81aa8f | |||
| 179e61b00d |
@@ -36,17 +36,20 @@ 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"
|
||||
},
|
||||
{
|
||||
name: "Contact", id: "#contact-us"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-photo/delaware-flag-with-banner_187299-35477.jpg"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781280475295-len51mi1.png"
|
||||
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"
|
||||
},
|
||||
@@ -99,7 +105,7 @@ export default function FilePage() {
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-photo/delaware-flag-with-banner_187299-35477.jpg"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781280475295-len51mi1.png"
|
||||
logoAlt="Orlando Private School Logo"
|
||||
logoText="Orlando Private School"
|
||||
copyrightText="© 2024 Orlando Private School. All rights reserved."
|
||||
@@ -108,4 +114,4 @@ export default function FilePage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,127 @@
|
||||
"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: "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: "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 school’s 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."
|
||||
}]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</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>
|
||||
);
|
||||
}
|
||||
@@ -45,12 +45,13 @@ export default function LandingPage() {
|
||||
{
|
||||
name: "Tuition", id: "#tuition"},
|
||||
{
|
||||
name: "File", id: "/file"
|
||||
name: "Ethical Conduct", id: "/orlando-private-school-standards-of-ethical-conduct"
|
||||
},
|
||||
|
||||
{
|
||||
name: "Contact", id: "#contact-us"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-photo/delaware-flag-with-banner_187299-35477.jpg"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781288946254-b2o2qb8m.png"
|
||||
logoAlt="Orlando Private School Logo"
|
||||
brandName="Orlando Private School"
|
||||
button={{
|
||||
@@ -206,17 +207,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "gallery-1", name: "Creative Minds", price: "Art Class", imageSrc: "http://img.b2bpic.net/free-photo/close-up-kids-painting-together_23-2149027436.jpg", imageAlt: "Students painting in an art class"},
|
||||
id: "gallery-1", name: "Creative Minds", price: "Art Class", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781288946254-b2o2qb8m.png?_wi=1", imageAlt: "Students painting in an art class"},
|
||||
{
|
||||
id: "gallery-2", name: "Future Innovators", price: "Robotics Club", imageSrc: "http://img.b2bpic.net/free-photo/girl-with-her-dads-enjoying-family-trip_23-2149503858.jpg", imageAlt: "Children building robots in a robotics club"},
|
||||
id: "gallery-2", name: "Future Innovators", price: "Robotics Club", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781288946254-b2o2qb8m.png?_wi=2", imageAlt: "Children building robots in a robotics club"},
|
||||
{
|
||||
id: "gallery-3", name: "On the Field", price: "Soccer Practice", imageSrc: "http://img.b2bpic.net/free-photo/closeup-photo-basketball-ball-with-girl-sitting-plastic-orange-penny-shortboard-asphalt_158538-13662.jpg", imageAlt: "Students playing soccer on a school field"},
|
||||
id: "gallery-3", name: "On the Field", price: "Soccer Practice", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781288946254-b2o2qb8m.png?_wi=3", imageAlt: "Students playing soccer on a school field"},
|
||||
{
|
||||
id: "gallery-4", name: "Engaged Learners", price: "Classroom Activity", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-happy-couple-playing-chess_23-2149293631.jpg", imageAlt: "Happy students participating in a classroom activity"},
|
||||
id: "gallery-4", name: "Engaged Learners", price: "Classroom Activity", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781288946254-b2o2qb8m.png?_wi=4", imageAlt: "Happy students participating in a classroom activity"},
|
||||
{
|
||||
id: "gallery-5", name: "Musical Talent", price: "School Band", imageSrc: "http://img.b2bpic.net/free-photo/young-man-writing-notebook-study-session_23-2149285396.jpg", imageAlt: "Students playing instruments in the school band"},
|
||||
id: "gallery-5", name: "Musical Talent", price: "School Band", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781288946254-b2o2qb8m.png?_wi=5", imageAlt: "Students playing instruments in the school band"},
|
||||
{
|
||||
id: "gallery-6", name: "Library Exploration", price: "Reading Time", imageSrc: "http://img.b2bpic.net/free-photo/sporty-girl-scores-goal-into-goal-football-concept-girl-football-field_169016-68262.jpg", imageAlt: "Children reading books in the school library"},
|
||||
id: "gallery-6", name: "Library Exploration", price: "Reading Time", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781288946254-b2o2qb8m.png?_wi=6", imageAlt: "Children reading books in the school library"},
|
||||
]}
|
||||
title="A Glimpse into Campus Life"
|
||||
description="Explore the vibrant daily life at Orlando Private School through our photo gallery, showcasing happy students, engaging activities, and our beautiful campus."
|
||||
@@ -228,15 +229,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah J., Parent", imageSrc: "http://img.b2bpic.net/free-photo/selfie-portrait-schoolgirl_23-2148203772.jpg", imageAlt: "Photo of Sarah J., a happy parent"},
|
||||
id: "1", name: "Sarah J., Parent", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781288946254-b2o2qb8m.png?_wi=7", imageAlt: "Photo of Sarah J., a happy parent"},
|
||||
{
|
||||
id: "2", name: "Michael C., Parent", imageSrc: "http://img.b2bpic.net/free-photo/tutor-teach-young-student_23-2148511023.jpg", imageAlt: "Photo of Michael C., a satisfied parent"},
|
||||
id: "2", name: "Michael C., Parent", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781288946254-b2o2qb8m.png?_wi=8", imageAlt: "Photo of Michael C., a satisfied parent"},
|
||||
{
|
||||
id: "3", name: "Emily R., Guardian", imageSrc: "http://img.b2bpic.net/free-photo/young-female-showing-winner-gesture-graduate-uniform-looking-blissful_176474-82403.jpg", imageAlt: "Photo of Emily R., a supportive guardian"},
|
||||
id: "3", name: "Emily R., Guardian", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781288946254-b2o2qb8m.png?_wi=9", imageAlt: "Photo of Emily R., a supportive guardian"},
|
||||
{
|
||||
id: "4", name: "David K., Alumnus", imageAlt: "Photo of David K., a successful alumnus", imageSrc: "http://img.b2bpic.net/free-photo/fathers-day-concept-with-daughter_23-2147805447.jpg"},
|
||||
id: "4", name: "David K., Alumnus", imageAlt: "Photo of David K., a successful alumnus", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781288946254-b2o2qb8m.png?_wi=10"},
|
||||
{
|
||||
id: "5", name: "Jessica L., Parent", imageSrc: "http://img.b2bpic.net/free-photo/group-activists-friends-collecting-plastic-waste-park-environmental-conservation_1153-4029.jpg", imageAlt: "Photo of Jessica L., a happy parent"},
|
||||
id: "5", name: "Jessica L., Parent", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781288946254-b2o2qb8m.png?_wi=11", imageAlt: "Photo of Jessica L., a happy parent"},
|
||||
]}
|
||||
cardTitle="Hear From Our Community"
|
||||
cardTag="Trusted Voices"
|
||||
@@ -300,8 +301,9 @@ export default function LandingPage() {
|
||||
{
|
||||
label: "Tuition", href: "#tuition"},
|
||||
{
|
||||
label: "File", href: "/file"
|
||||
label: "Ethical Conduct", href: "/orlando-private-school-standards-of-ethical-conduct"
|
||||
},
|
||||
|
||||
{
|
||||
label: "Contact", href: "#contact-us"},
|
||||
],
|
||||
@@ -319,7 +321,7 @@ export default function LandingPage() {
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-photo/delaware-flag-with-banner_187299-35477.jpg"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ETSYg6nElnC2XrpoMEFXkGgJGI/uploaded-1781288946254-b2o2qb8m.png"
|
||||
logoAlt="Orlando Private School Logo"
|
||||
logoText="Orlando Private School"
|
||||
copyrightText="© 2024 Orlando Private School. All rights reserved."
|
||||
|
||||
Reference in New Issue
Block a user