Merge version_1 into main #5

Merged
bender merged 1 commits from version_1 into main 2026-05-23 12:41:49 +00:00

View File

@@ -4,7 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import LegalSection from '@/components/sections/legal/LegalSection';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
export default function ContactPage() {
@@ -46,18 +45,22 @@ export default function ContactPage() {
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="section"
title="Contact Policies"
sections={[
{
heading: "Inquiries", content: { type: "paragraph", text: "All inquiries are handled with strict privacy protocols." }
},
{
heading: "Office Hours", content: { type: "list", items: ["Mon-Fri: 9am-6pm", "Sat-Sun: Closed"] }
}
]}
/>
<div className="container mx-auto py-16">
<h2 className="text-3xl font-bold mb-8">Contact Policies</h2>
<div className="space-y-6">
<div>
<h3 className="text-xl font-semibold">Inquiries</h3>
<p>All inquiries are handled with strict privacy protocols.</p>
</div>
<div>
<h3 className="text-xl font-semibold">Office Hours</h3>
<ul className="list-disc pl-5">
<li>Mon-Fri: 9am-6pm</li>
<li>Sat-Sun: Closed</li>
</ul>
</div>
</div>
</div>
</div>
<div id="footer" data-section="footer">