From 7c878ef767474cf92910f1a86f9b2baaa7ac4dcd Mon Sep 17 00:00:00 2001
From: kudindmitriy
Date: Mon, 2 Feb 2026 10:24:43 +0200
Subject: [PATCH] Bob AI: change the team section title to Meet Our Expert T...
---
src/app/globals.css | 21 +-
src/app/page.tsx | 223 +++++++++++++-----
.../sections/contact/ContactSplitForm.tsx | 10 -
.../sections/team/TeamCardEleven.tsx | 3 -
4 files changed, 179 insertions(+), 78 deletions(-)
diff --git a/src/app/globals.css b/src/app/globals.css
index 72f0ddb..8ee74d3 100644
--- a/src/app/globals.css
+++ b/src/app/globals.css
@@ -1,16 +1,17 @@
@import "tailwindcss";
-@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;500;600;700&display=swap');
+
:root {
/* Base units */
/* --vw is set by ThemeProvider */
- --background: #f5d079;;
- --card: #eac263;;
- --foreground: #442c0a;;
- --primary-cta: #d1911b;;
- --secondary-cta: #8b572a;;
- --accent: #d1911b;;
- --background-accent: #fff7e6;;
+ --background: #f5f5f5;;
+ --card: #ffffff;;
+ --foreground: #1c1c1c;;
+ --primary-cta: #2bb889;;
+ --secondary-cta: #ffffff;;
+ --accent: #09b97e;;
+ --background-accent: #a8e8c3;;
+
/* Base spacing units */
--vw-0_25: calc(var(--vw) * 0.25);
--vw-0_5: calc(var(--vw) * 0.5);
@@ -520,7 +521,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
- font-family: 'Merriweather', sans-serif;
+ font-family: var(--font-manrope), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -533,5 +534,5 @@ h3,
h4,
h5,
h6 {
- font-family: 'Merriweather', sans-serif;
+ font-family: var(--font-manrope), sans-serif;
}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index bf14ac9..18411a4 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -2,23 +2,24 @@
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
+import TextAbout from '@/components/sections/about/TextAbout';
import FeatureCardTwentyTwo from '@/components/sections/feature/FeatureCardTwentyTwo';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
+import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
+import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
+import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
+import FooterMedia from '@/components/sections/footer/FooterMedia';
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Sparkles, BookOpen, Users, TrendingUp, Award, Target } from "lucide-react";
-import HeroBillboard1 from '@/components/sections/hero/HeroBillboard1';
-import ButtonTextUnderline from '@/components/button/ButtonTextUnderline';
-import TeamCardOne1 from '@/components/sections/team/TeamCardOne1';
-import FooterBase1 from '@/components/sections/footer/FooterBase1';
export default function TechAcademyPage() {
return (
@@ -49,7 +49,7 @@ export default function TechAcademyPage() {
title="Master In-Demand Tech Skills"
description="Learn from industry experts and transform your career with our comprehensive IT academy. Hands-on courses in web development, data science, cloud computing, and more."
background={{ variant: "radial-gradient" }}
- tag="Welcome to TechMasters"
+ tag="Welcome to TechAcademy"
tagIcon={Sparkles}
buttons={[
{ text: "Start Learning", href: "courses" },
@@ -65,6 +65,16 @@ export default function TechAcademyPage() {
/>
+
+
+
+
-
-
+
-
-
+
+
+
-
-
+
-
-
+
-
-
-
+
+
);
}
\ No newline at end of file
diff --git a/src/components/sections/contact/ContactSplitForm.tsx b/src/components/sections/contact/ContactSplitForm.tsx
index 064adc5..64d6707 100644
--- a/src/components/sections/contact/ContactSplitForm.tsx
+++ b/src/components/sections/contact/ContactSplitForm.tsx
@@ -10,7 +10,6 @@ import { cls, shouldUseInvertedText } from "@/lib/utils";
import { useTheme } from "@/providers/themeProvider/ThemeProvider";
import { getButtonProps } from "@/lib/buttonUtils";
import type { AnimationType } from "@/components/text/types";
-import { LucidePhoneCall } from "lucide-react";
export interface InputField {
name: string;
@@ -201,13 +200,4 @@ const ContactSplitForm = ({
ContactSplitForm.displayName = "ContactSplitForm";
-// Inserted