From f67093f34e61fee8cbfd8c84c55b105a3b0d754e Mon Sep 17 00:00:00 2001 From: jamesratcliffe101 Date: Sat, 30 May 2026 08:51:05 +0100 Subject: [PATCH] add servies page with content and a typing words feature to contact page --- app/about-us/page.tsx | 7 +- app/contact/page.tsx | 22 +++-- app/layout.tsx | 6 +- app/page.tsx | 7 +- app/plans/page.tsx | 5 -- app/services/page.tsx | 16 ++++ components/contact-form.css | 2 +- components/services-feature.css | 152 ++++++++++++++++++++++++++++++++ components/services-feature.tsx | 97 ++++++++++++++++++++ components/site-header.tsx | 2 +- components/typing-words.css | 25 ++++++ components/typing-words.tsx | 84 ++++++++++++++++++ 12 files changed, 406 insertions(+), 19 deletions(-) delete mode 100644 app/plans/page.tsx create mode 100644 app/services/page.tsx create mode 100644 components/services-feature.css create mode 100644 components/services-feature.tsx create mode 100644 components/typing-words.css create mode 100644 components/typing-words.tsx diff --git a/app/about-us/page.tsx b/app/about-us/page.tsx index a7303db..cfb937d 100644 --- a/app/about-us/page.tsx +++ b/app/about-us/page.tsx @@ -1,5 +1,10 @@ + +import PicWithText from "@/components/pic-with-text"; +import heda_bang from "../../assets/u_mey4kjj5ww-angry-2498.gif" + + export default function Page() { return ( -

about us page

+ ) } \ No newline at end of file diff --git a/app/contact/page.tsx b/app/contact/page.tsx index a132a3e..22788bf 100644 --- a/app/contact/page.tsx +++ b/app/contact/page.tsx @@ -1,11 +1,23 @@ -import ContactForm from '@/components/contact-form' +import ContactForm from '@/components/contact-form'; +import TypingWords from '@/components/typing-words'; export default function ContactPage() { return ( -
-
+
+
+

+ Tell us about your +

+

+ +

+

+ Share a few details and we'll get back to you as soon as we can. +

+
+
-
+
- ) + ); } diff --git a/app/layout.tsx b/app/layout.tsx index dbbf99d..ad7e334 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -36,7 +36,11 @@ export default function RootLayout({ > - {children} +
+
+ {children} +
+