Files
bf452d4c-a3cd-4215-a733-4a1…/src/app/file/page.tsx
2026-06-12 16:08:53 +00:00

117 lines
4.7 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
export default function FilePage() {
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={[
{
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"},
]}
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"}}
/>
</div>
<div id="file-content" data-section="file-content" className="py-40">
<ContactText
useInvertedBackground={true}
background={{
variant: "rotated-rays-static-grid"}}
text="This is a dedicated page for files you can access."
buttons={[
{
text: "Download File", href: "#", onClick: () => alert("Download initiated!")
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
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: "#"},
],
},
]}
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."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}