From 3d102e0d7bb0bb7d3bcc6efbb08c768291802244 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Mon, 20 Apr 2026 10:13:05 +0000 Subject: [PATCH] Bob AI: Add services page --- src/app/services/page.tsx | 43 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 src/app/services/page.tsx diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx new file mode 100644 index 0000000..e8d54e2 --- /dev/null +++ b/src/app/services/page.tsx @@ -0,0 +1,43 @@ +import React from 'react'; + +const Services = () => { + return ( +
+
+

Our Services

+

+ Discover the range of professional services we offer to help you achieve your goals. + We are committed to delivering high-quality solutions tailored to your needs. +

+
+
+

Service A

+

+ A detailed description of Service A, highlighting its benefits and what it entails for our clients. +

+
+
+

Service B

+

+ An overview of Service B, explaining how it addresses specific challenges and provides value. +

+
+
+

Service C

+

+ Information about Service C, outlining its key features and the expertise we bring to deliver it. +

+
+
+

Service D

+

+ A brief explanation of Service D, demonstrating our commitment to comprehensive support and solutions. +

+
+
+
+
+ ); +}; + +export default Services; \ No newline at end of file -- 2.49.1