From 453007217a39d1ac053ca1336cdfcb23043c8933 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 14:59:41 +0000 Subject: [PATCH] Bob AI: Redesign contact header into a 3-column grid of cards --- src/pages/ContactPage.tsx | 62 ++++------------- .../ContactPage/sections/ContactMain.tsx | 68 +++++++++++++++++++ src/pages/ContactPage/sections/Metrics.tsx | 40 +++++++++++ 3 files changed, 120 insertions(+), 50 deletions(-) create mode 100644 src/pages/ContactPage/sections/ContactMain.tsx create mode 100644 src/pages/ContactPage/sections/Metrics.tsx diff --git a/src/pages/ContactPage.tsx b/src/pages/ContactPage.tsx index d0fba0c..51ab30c 100644 --- a/src/pages/ContactPage.tsx +++ b/src/pages/ContactPage.tsx @@ -1,56 +1,18 @@ -import ContactCta from '@/components/sections/contact/ContactCta'; -import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +// AUTO-GENERATED shell by per-section-migrate. +// Section bodies live in .//sections/.tsx. Edit the section +// files directly. Non-block content (wrappers, non-inlinable sections) is +// preserved inline; extracted section blocks become refs. -export default function ContactPage() { +import React from 'react'; +import ContactMainSection from './ContactPage/sections/ContactMain'; +import MetricsSection from './ContactPage/sections/Metrics'; + +export default function ContactPage(): React.JSX.Element { return ( - <> -
- - - -
+<> + -
- - - -
+ ); } diff --git a/src/pages/ContactPage/sections/ContactMain.tsx b/src/pages/ContactPage/sections/ContactMain.tsx new file mode 100644 index 0000000..eb59948 --- /dev/null +++ b/src/pages/ContactPage/sections/ContactMain.tsx @@ -0,0 +1,68 @@ +/* eslint-disable */ +// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body +import ScrollReveal from "@/components/ui/ScrollReveal"; +import TextAnimation from "@/components/ui/TextAnimation"; +import Button from "@/components/ui/Button"; + +const primaryButton = { + text: "Get Started", + href: "/contact" +}; +const secondaryButton = { + text: "Email Us", + href: "mailto:hello@pulsepointmedia-ni.co.uk" +}; + +const ContactMainInline = () => { + return ( +
+
+ +
+
+
+

{"Let's Talk"}

+
+ + + +
+
+ Call Us +

07508 514 916

+
+
+ Email Us +

hello@pulsepointmedia-ni.co.uk

+
+
+ Location +

Belfast, serving Northern Ireland

+
+
+ +
+
+
+
+
+
+
+ ); +}; + +export default function ContactMainSection() { + return ( +
+ +
+ ); +} diff --git a/src/pages/ContactPage/sections/Metrics.tsx b/src/pages/ContactPage/sections/Metrics.tsx new file mode 100644 index 0000000..128663f --- /dev/null +++ b/src/pages/ContactPage/sections/Metrics.tsx @@ -0,0 +1,40 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "metrics" section. + +import React from 'react'; +import MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function MetricsSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} -- 2.49.1