Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4a816b618b | |||
| 990f70983a | |||
| b50126e90b | |||
| c51608c679 | |||
| 546e1d0457 | |||
| cff8eb3b7e | |||
| 0b135c6795 | |||
| 8818292b5a | |||
| bf1de25f79 | |||
| f576331995 | |||
| 4824179390 |
@@ -1,68 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import { Phone, Facebook, Linkedin, Instagram } from "lucide-react";
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="rounded"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="largeSmall"
|
||||
background="circleGradient"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
brandName="PhysioMove"
|
||||
navItems={[
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Our Team", id: "team" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Book Appointment", href: "#contact"
|
||||
}}
|
||||
animateOnLoad={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact" className="pt-32">
|
||||
<ContactCenter
|
||||
tag="Get In Touch"
|
||||
title="Contact PhysioMove"
|
||||
description="Have questions about our services? We're here to help. Reach out to us and we'll respond as soon as possible."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Send Message"
|
||||
termsText="We respect your privacy. Your information is safe with us."
|
||||
onSubmit={(email) => console.log('Contact form submission:', email)}
|
||||
className="py-20"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="PhysioMove"
|
||||
copyrightText="© 2025 PhysioMove Physiotherapy | Johannesburg, South Africa"
|
||||
socialLinks={[
|
||||
{ icon: Facebook, href: "https://facebook.com/physiomove", ariaLabel: "Facebook" },
|
||||
{ icon: Linkedin, href: "https://linkedin.com/company/physiomove", ariaLabel: "LinkedIn" },
|
||||
{ icon: Instagram, href: "https://instagram.com/physiomove", ariaLabel: "Instagram" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
1371
src/app/layout.tsx
1371
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -34,8 +34,7 @@ export default function LandingPage() {
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Our Team", id: "team" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
{ name: "FAQ", id: "faq" }
|
||||
]}
|
||||
button={{
|
||||
text: "Book Appointment", href: "#contact"
|
||||
@@ -63,7 +62,7 @@ export default function LandingPage() {
|
||||
{ text: "Learn More", href: "#services" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQa67xAGSkUYajHq78M9kxfvVD/tmp/a-physiotherapist-in-blue-scrubs-that-sa-1772528509039-26fb4b66.png"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/female-patient-undergoing-therapy-with-physiotherapist_23-2148836499.jpg"
|
||||
imageAlt="Physiotherapy treatment session"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
|
||||
Reference in New Issue
Block a user