Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2d852ebf78 | |||
| ad114d6022 | |||
| 779cf3e977 | |||
| d8db889635 | |||
| 7f24f10c1d | |||
| d9c9dbeaa1 | |||
| 17c6ee040f | |||
| c2b7f70ec4 | |||
| 447d3f2726 | |||
| dacda8c872 |
68
src/app/contact/page.tsx
Normal file
68
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,68 @@
|
||||
"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
@@ -5,7 +5,7 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating
|
||||
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
||||
import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
|
||||
import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
|
||||
import TeamCardSix from "@/components/sections/team/TeamCardSix";
|
||||
import TeamCardOne from "@/components/sections/team/TeamCardOne";
|
||||
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
||||
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
@@ -34,7 +34,8 @@ export default function LandingPage() {
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Our Team", id: "team" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" }
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
button={{
|
||||
text: "Book Appointment", href: "#contact"
|
||||
@@ -53,7 +54,7 @@ export default function LandingPage() {
|
||||
{ value: "15+", label: "Years Experience" },
|
||||
{ value: "98%", label: "Success Rate" }
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
enableKpiAnimation={false}
|
||||
tag="Professional Physiotherapy"
|
||||
tagIcon={Heart}
|
||||
tagAnimation="slide-up"
|
||||
@@ -62,7 +63,7 @@ export default function LandingPage() {
|
||||
{ text: "Learn More", href: "#services" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/female-patient-undergoing-therapy-with-physiotherapist_23-2148836499.jpg"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQa67xAGSkUYajHq78M9kxfvVD/tmp/a-physiotherapist-in-blue-scrubs-that-sa-1772528509039-26fb4b66.png"
|
||||
imageAlt="Physiotherapy treatment session"
|
||||
mediaAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
@@ -120,7 +121,7 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardSix
|
||||
<TeamCardOne
|
||||
title="Meet Our Experienced Team"
|
||||
description="Our licensed physiotherapists bring years of expertise and genuine care to every patient interaction"
|
||||
tag="Expert Practitioners"
|
||||
|
||||
Reference in New Issue
Block a user