Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions src/pages/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ const AboutPage = ({ data }) => {
toggleModal({ type: FORM_TYPES.BROKER_REFERRAL });
};

const handleManagementForm = () => {
toggleModal({ type: FORM_TYPES.PROPERTY_MANAGEMENT });
};
// const handleManagementForm = () => {
// toggleModal({ type: FORM_TYPES.PROPERTY_MANAGEMENT });
// };

// Process the images from GraphQL query
const heroImage = getImage(data.heroImage);
Expand Down Expand Up @@ -171,9 +171,12 @@ const AboutPage = ({ data }) => {
<p className="text-body-lg text-neutral-700 leading-relaxed">
Our team combines decades of experience in the UK property market with a genuine desire to help homeowners in need of quick, hassle-free property sales. Whether you're facing financial constraints, relocating for work, dealing with inheritance issues, or simply want to avoid the stress of traditional selling processes, we're here to help.
</p>
{/* Property management content commented out temporarily */}
{/*
<p className="text-body-lg text-neutral-700 leading-relaxed">
Beyond our core property purchasing services, we've expanded to offer comprehensive property management solutions for landlords seeking stress-free rental management. From tenant sourcing and rent collection to compliance management and financial reporting, we provide complete support for property investors looking to maximise their returns whilst ensuring regulatory compliance.
</p>
*/}
<p className="text-body-lg text-neutral-700 leading-relaxed">
What sets us apart is our commitment to transparency and fair dealing. We believe in making clear, competitive offers without hidden fees or last-minute price reductions. Our process is designed to give you certainty and peace of mind from the very beginning.
</p>
Expand Down Expand Up @@ -283,7 +286,8 @@ const AboutPage = ({ data }) => {
</div>
</section>

{/* Property Management CTA */}
{/* Property Management CTA - Commented out temporarily */}
{/*
<section className="bg-gradient-to-br from-neutral-50 to-white py-16">
<div className="container mx-auto px-4">
<motion.div
Expand Down Expand Up @@ -311,6 +315,7 @@ const AboutPage = ({ data }) => {
</motion.div>
</div>
</section>
*/}
</>
)
}
Expand Down
15 changes: 8 additions & 7 deletions src/pages/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react'
import { motion } from 'framer-motion'
import Seo from '../components/seo'
import { StaticImage } from 'gatsby-plugin-image'
import { Link } from 'gatsby'
// import { Link } from 'gatsby'
import { useModal } from '../context/modalContext'
import { FORM_TYPES } from '../context/modalContext'

Expand Down Expand Up @@ -362,7 +362,7 @@ const ServicesPage = () => {
</div>
</section>

{/* Property Management Services */}
{/* Property Management Services - Commented out temporarily
<section className="py-16 md:py-24 bg-gradient-to-bl from-white to-neutral-75 to-neutral-100 relative">
<div className="container mx-auto px-4 relative z-10">
<motion.div
Expand All @@ -389,7 +389,7 @@ const ServicesPage = () => {
</div>

<div className="grid md:grid-cols-3 gap-8">
{/* Full Property Management */}
{/* Full Property Management /}
<motion.div variants={fadeIn} className="bg-white p-8 rounded-xl shadow-md border-t-4 border-primary-600 hover:shadow-xl transition-all duration-300 flex flex-col h-full">
<div className="flex flex-col items-center text-center md:items-start md:text-left mb-6">
<div className="w-14 h-14 bg-primary-100 rounded-full flex items-center justify-center mb-4">
Expand All @@ -410,7 +410,7 @@ const ServicesPage = () => {
</button>
</motion.div>

{/* Compliance Management */}
{/* Compliance Management /}
<motion.div variants={fadeIn} className="bg-white p-8 rounded-xl shadow-md border-t-4 border-primary-600 hover:shadow-xl transition-all duration-300 flex flex-col h-full">
<div className="flex flex-col items-center text-center md:items-start md:text-left mb-6">
<div className="w-14 h-14 bg-primary-100 rounded-full flex items-center justify-center mb-4">
Expand All @@ -431,7 +431,7 @@ const ServicesPage = () => {
</button>
</motion.div>

{/* Financial Reporting */}
{/* Financial Reporting /}
<motion.div variants={fadeIn} className="bg-white p-8 rounded-xl shadow-md border-t-4 border-primary-600 hover:shadow-xl transition-all duration-300 flex flex-col h-full">
<div className="flex flex-col items-center text-center md:items-start md:text-left mb-6">
<div className="w-14 h-14 bg-primary-100 rounded-full flex items-center justify-center mb-4">
Expand All @@ -453,7 +453,7 @@ const ServicesPage = () => {
</motion.div>
</div>

{/* CTA Buttons */}
{/* CTA Buttons /}
<div className="flex flex-col sm:flex-row gap-4 justify-center mt-16">
<motion.button
variants={fadeIn}
Expand All @@ -468,11 +468,12 @@ const ServicesPage = () => {
<Link to="/services/for-landlords" className="secondary-btn inline-flex items-center justify-center w-full sm:w-auto">
View Landlords Service
</Link>
</motion.div> */}
</motion.div> /}
</div>
</motion.div>
</div>
</section>
*/}
</>
)
}
Expand Down
Loading